equal
deleted
inserted
replaced
14 |
14 |
15 function onLoadInit() { |
15 function onLoadInit() { |
16 tinyMCEPopup.resizeToInnerSize(); |
16 tinyMCEPopup.resizeToInnerSize(); |
17 |
17 |
18 // Fix for endless reloading in FF |
18 // Fix for endless reloading in FF |
19 window.setTimeout('createIFrame();', 10); |
19 window.setTimeout(createIFrame, 10); |
20 } |
20 } |
21 |
21 |
22 function createIFrame() { |
22 function createIFrame() { |
23 document.getElementById('iframecontainer').innerHTML = '<iframe id="frmData" name="frmData" class="sourceIframe" src="blank.htm" height="280" width="400" frameborder="0" style="background-color:#FFFFFF; width:100%;" dir="ltr" wrap="soft"></iframe>'; |
23 document.getElementById('iframecontainer').innerHTML = '<iframe id="frmData" name="frmData" class="sourceIframe" src="blank.htm" height="280" width="400" frameborder="0" style="background-color:#FFFFFF; width:100%;" dir="ltr" wrap="soft"></iframe>'; |
24 } |
24 } |