]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/tinymce/themes/advanced/js/source_editor.js
Wordpress 3.1-scripts
[autoinstalls/wordpress.git] / wp-includes / js / tinymce / themes / advanced / js / source_editor.js
index 81063ecbcdef6e1b22e325ae44fb5158107207a9..4f61d1c702e4bf7441823680bd4fb41ab77cac30 100644 (file)
@@ -44,19 +44,13 @@ function toggleWordWrap(elm) {
                setWrap('off');
 }
 
-var wHeight=0, wWidth=0, owHeight=0, owWidth=0;
-
 function resizeInputs() {
-       var el = document.getElementById('htmlSource');
+       var vp = tinyMCEPopup.dom.getViewPort(window), el;
 
-       if (!tinymce.isIE) {
-                wHeight = self.innerHeight - 65;
-                wWidth = self.innerWidth - 16;
-       } else {
-                wHeight = document.body.clientHeight - 70;
-                wWidth = document.body.clientWidth - 16;
-       }
+       el = document.getElementById('htmlSource');
 
-       el.style.height = Math.abs(wHeight) + 'px';
-       el.style.width  = Math.abs(wWidth) + 'px';
+       if (el) {
+               el.style.width  = (vp.w - 20) + 'px';
+               el.style.height = (vp.h - 65) + 'px';
+       }
 }