From a9251be2f09fb5f18a85d201c67668c70980efe3 Mon Sep 17 00:00:00 2001 From: thomascube Date: Wed, 20 Apr 2011 19:11:10 +0000 Subject: Update to TinyMCE 3.4.2 to fix errors in IE9 --- .../js/tiny_mce/themes/advanced/js/source_editor.js | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'program/js/tiny_mce/themes/advanced/js/source_editor.js') diff --git a/program/js/tiny_mce/themes/advanced/js/source_editor.js b/program/js/tiny_mce/themes/advanced/js/source_editor.js index 279328614..84546ad52 100644 --- a/program/js/tiny_mce/themes/advanced/js/source_editor.js +++ b/program/js/tiny_mce/themes/advanced/js/source_editor.js @@ -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'; + } } -- cgit v1.2.3