Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
resize.ts 447 B
/*
This script will resize the iframe based on messages
*/
const iframeElement = document.querySelector(".chatterbox-iframe") as HTMLIFrameElement;

window.addEventListener("message", event => {
    const { action, params } = event.data;
    if (action === "resize-iframe") {
        const { height, width } = params;
        if (height) { iframeElement.style.height = height; }
        if (width) { iframeElement.style.width = width; }
    }
});