diff --git a/web/index.html b/web/index.html index 8acf61a..d15b0fd 100644 --- a/web/index.html +++ b/web/index.html @@ -139,24 +139,13 @@ function loadContent(pageUrl) { var iframe = document.createElement('iframe'); iframe.src = pageUrl; - iframe.style.width = '100%'; - iframe.style.border = 'none'; - iframe.onload = function() { - iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px'; - }; + iframe.style.width = '100%'; // make the iframe take full width of the container + iframe.style.border = 'none'; // hide the border + iframe.style.overflow = 'hidden'; // hide scrollbars, can be 'auto' if you prefer automatic scrollbars + iframe.style.height = '1800px'; // set a height so that the iframe is visible, adjust as per your needs document.getElementById("toolPanel").innerHTML = ''; document.getElementById("toolPanel").appendChild(iframe); } -// function loadContent(pageUrl) { -// var iframe = document.createElement('iframe'); -// iframe.src = pageUrl; -// iframe.style.width = '100%'; // make the iframe take full width of the container -// iframe.style.border = 'none'; // hide the border -// iframe.style.overflow = 'hidden'; // hide scrollbars, can be 'auto' if you prefer automatic scrollbars -// iframe.style.height = '800px'; // set a height so that the iframe is visible, adjust as per your needs -// document.getElementById("toolPanel").innerHTML = ''; -// document.getElementById("toolPanel").appendChild(iframe); -// } \ No newline at end of file