Spaces:
Sleeping
Sleeping
File size: 1,799 Bytes
07c3cdd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | <body onresize="autoResizeScreen()" onload="autoResizeScreen()">
<style type="text/css">
*html body {
overflow-y: hidden;
}
</style>
<iframe name="adminFrame" id="adminFrame" src ="main_init" width="99%" height="768" frameborder="0">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
<script>
if (document.getElementById('pm_submenu'))
document.getElementById('pm_submenu').style.display = 'none';
document.documentElement.style.overflowY = 'hidden';
function autoResizeScreen() {
var pmHeader, container, adminFrame, height, setupFrame, factor;
adminFrame = document.getElementById('adminFrame');
pmHeader = document.getElementById("pm_header");
if (document.getElementById("mainMenuBG") &&
document.getElementById("mainMenuBG").parentNode &&
document.getElementById("mainMenuBG").parentNode.parentNode &&
document.getElementById("mainMenuBG").parentNode.parentNode.parentNode &&
document.getElementById("mainMenuBG").parentNode.parentNode.parentNode.parentNode) {
container = document.getElementById("mainMenuBG").parentNode.parentNode.parentNode.parentNode;
}
if (pmHeader === container) {
factor = pmHeader.clientHeight;
} else {
factor = 90;
}
height = getClientWindowSize().height - factor;
adminFrame.style.height = height + 'px';
if (adminFrame.height) {
adminFrame.height = height + 'px';
}
setupFrame = adminFrame.contentWindow.document.getElementById('setup-frame');
if (setupFrame) {
setupFrame.style.height = (height - 5) + 'px';
}
}
</script>
</html> |