]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/tinymce/plugins/paste/js/pastetext.js
Wordpress 2.5.1
[autoinstalls/wordpress.git] / 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 11a87387ab4218de503b2e44f26a1da1068fff48..28073877e166f3030862247666dbef5cf8bee6d5 100644 (file)
@@ -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