X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/a66f9e26487c560245ef9cd17d7e87c0cbb650af:/wp-includes/js/tinymce/plugins/paste/jscripts/pasteword.js..177fd6fefd2e3d5a0ea6591c71d660cabdb3c1a4:/wp-includes/js/tinymce/plugins/paste/js/pasteword.js diff --git a/wp-includes/js/tinymce/plugins/paste/jscripts/pasteword.js b/wp-includes/js/tinymce/plugins/paste/js/pasteword.js similarity index 80% rename from wp-includes/js/tinymce/plugins/paste/jscripts/pasteword.js rename to wp-includes/js/tinymce/plugins/paste/js/pasteword.js index fe75ff32..ea9c29c2 100644 --- a/wp-includes/js/tinymce/plugins/paste/jscripts/pasteword.js +++ b/wp-includes/js/tinymce/plugins/paste/js/pasteword.js @@ -1,3 +1,5 @@ +tinyMCEPopup.requireLangPack(); + function saveContent() { var html = document.getElementById("frmData").contentWindow.document.body.innerHTML; @@ -14,7 +16,7 @@ function onLoadInit() { tinyMCEPopup.resizeToInnerSize(); // Fix for endless reloading in FF - window.setTimeout('createIFrame();', 10); + window.setTimeout(createIFrame, 10); } function createIFrame() { @@ -24,19 +26,19 @@ function createIFrame() { var wHeight=0, wWidth=0, owHeight=0, owWidth=0; function initIframe(doc) { - var dir = tinyMCE.selectedInstance.settings['directionality']; + var dir = tinyMCEPopup.editor.settings.directionality; doc.body.dir = dir; // Remove Gecko spellchecking - if (tinyMCE.isGecko) - doc.body.spellcheck = tinyMCE.getParam("gecko_spellcheck"); + if (tinymce.isGecko) + doc.body.spellcheck = tinyMCEPopup.getParam("gecko_spellcheck"); resizeInputs(); } function resizeInputs() { - if (!tinyMCE.isMSIE) { + if (!tinymce.isIE) { wHeight = self.innerHeight - 80; wWidth = self.innerWidth - 18; } else { @@ -50,3 +52,5 @@ function resizeInputs() { elm.style.width = Math.abs(wWidth) + 'px'; } } + +tinyMCEPopup.onInit.add(onLoadInit);