Loading application...
// Adjust iframe height on resize function adjustIframe() { const iframe = document.getElementById("app-frame"); iframe.style.height = window.innerHeight + "px"; } window.addEventListener("resize", adjustIframe); adjustIframe();