function embedObject()

in src/embed.js [45:49]


function embedObject(embeddableObject: EmbeddableObject) {
    const container = embeddableObject.getContainer();
    setTimeout(attachToDom.bind(null, embeddableObject.iframe, container), 0);
    return embeddableObject;
}