Files
luos/workflow/engine/templates/oauth2/applicationsLoad.php
Fabio Guachalla b507788b33 PMCORE-3812:Ada compliant in Extjs
Code Style

gulliver

dialog

CR

Corrections

CR 2
2022-11-09 08:46:56 -04:00

30 lines
1.0 KiB
PHP

<body onresize="autoResizeScreen()" onload="autoResizeScreen()">
<style type="text/css">
*html body {
overflow-y: hidden;
}
</style>
<iframe title="adminFrame" name="adminFrame" id="adminFrame" src ="clientSetup" width="99%" height="768" frameborder="0">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
<script>
oClientWinSize = getClientWindowSize();
if ( document.getElementById('pm_submenu') )
document.getElementById('pm_submenu').style.display = 'none';
document.documentElement.style.overflowY = 'hidden';
function autoResizeScreen() {
oCasesFrame = document.getElementById('adminFrame');
oClientWinSize = getClientWindowSize();
height = oClientWinSize.height-90;
oCasesFrame.style.height = height;
oCasesSubFrame = oCasesFrame.contentWindow.document.getElementById('setup-frame');
if(oCasesSubFrame)
oCasesSubFrame.style.height = height-5;
else
setTimeout('autoResizeScreen()', 2000);
}
</script>
</html>