From 39dc0663e2118169cbd537cfbf2f78a2b568123f Mon Sep 17 00:00:00 2001 From: dongsheng Date: Thu, 4 Dec 2008 08:22:20 +0000 Subject: [PATCH] "htmlarea/MDL-17448, fix enlarging htmlarea, thanks chris fryer" --- lib/editor/htmlarea/popups/fullscreen.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/editor/htmlarea/popups/fullscreen.php b/lib/editor/htmlarea/popups/fullscreen.php index 721810f8875..2cc07048083 100644 --- a/lib/editor/htmlarea/popups/fullscreen.php +++ b/lib/editor/htmlarea/popups/fullscreen.php @@ -34,7 +34,9 @@ for (var i = 0; i < scripts.length; ++i) { } else { new_script.src = "../" + script.src; } - head.appendChild(new_script); + if (navigator.appVersion.indexOf("MSIE") > 0 && script.src.indexOf("yui/event/event") == false) { + head.appendChild(new_script); + } } }