includes/clientside/tinymce/plugins/paste/js/pasteword.js
changeset 476 f26a69c40431
parent 335 67bd3121a12e
child 1193 e3b94bd055dc
equal deleted inserted replaced
475:51386f1852b8 476:f26a69c40431
    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 }