]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/tinymce/plugins/paste/js/pasteword.js
Wordpress 2.5.1
[autoinstalls/wordpress.git] / 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 fe75ff32a95b2168c79552697b173a1d46981ca9..ea9c29c2b08a676a65e0876904c05fa32a25934d 100644 (file)
@@ -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);