X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/a66f9e26487c560245ef9cd17d7e87c0cbb650af:/wp-includes/js/tinymce/plugins/paste/jscripts/pastetext.js..177fd6fefd2e3d5a0ea6591c71d660cabdb3c1a4:/wp-includes/js/tinymce/plugins/paste/js/pastetext.js diff --git a/wp-includes/js/tinymce/plugins/paste/jscripts/pastetext.js b/wp-includes/js/tinymce/plugins/paste/js/pastetext.js similarity index 80% rename from wp-includes/js/tinymce/plugins/paste/jscripts/pastetext.js rename to wp-includes/js/tinymce/plugins/paste/js/pastetext.js index 11a87387..28073877 100644 --- a/wp-includes/js/tinymce/plugins/paste/jscripts/pastetext.js +++ b/wp-includes/js/tinymce/plugins/paste/js/pastetext.js @@ -1,3 +1,5 @@ +tinyMCEPopup.requireLangPack(); + function saveContent() { if (document.forms[0].htmlSource.value == '') { tinyMCEPopup.close(); @@ -16,8 +18,8 @@ function onLoadInit() { tinyMCEPopup.resizeToInnerSize(); // Remove Gecko spellchecking - if (tinyMCE.isGecko) - document.body.spellcheck = tinyMCE.getParam("gecko_spellcheck"); + if (tinymce.isGecko) + document.body.spellcheck = tinyMCEPopup.getParam("gecko_spellcheck"); resizeInputs(); } @@ -25,7 +27,7 @@ function onLoadInit() { var wHeight=0, wWidth=0, owHeight=0, owWidth=0; function resizeInputs() { - if (!tinyMCE.isMSIE) { + if (!tinymce.isIE) { wHeight = self.innerHeight-80; wWidth = self.innerWidth-17; } else { @@ -36,3 +38,5 @@ function resizeInputs() { document.forms[0].htmlSource.style.height = Math.abs(wHeight) + 'px'; document.forms[0].htmlSource.style.width = Math.abs(wWidth) + 'px'; } + +tinyMCEPopup.onInit.add(onLoadInit); \ No newline at end of file