From: moodler Date: Thu, 12 Feb 2004 12:17:02 +0000 (+0000) Subject: Removed CloseOnEsc completely because it has issues on IE6 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=554143f22c04eca8016a5274e8668e55e2013840;p=moodle.git Removed CloseOnEsc completely because it has issues on IE6 and wasn't that useful anyway http://moodle.org/mod/forum/discuss.php?d=5253#24136 --- diff --git a/lib/editor/popups/fullscreen.php b/lib/editor/popups/fullscreen.php index ec007fc847..46dadd8803 100644 --- a/lib/editor/popups/fullscreen.php +++ b/lib/editor/popups/fullscreen.php @@ -37,23 +37,6 @@ for (var i = 0; i < scripts.length; ++i) { var parent_object = null; var editor = null; // to be initialized later [ function init() ] -/* ---------------------------------------------------------------------- *\ - Function : - Description : -\* ---------------------------------------------------------------------- */ - -function _CloseOnEsc(ev) { - if (document.all) { - // IE - ev = window.event; - } - if (ev.keyCode == 27) { - // update_parent(); - window.close(); - return; - } -} - /* ---------------------------------------------------------------------- *\ Function : cloneObject Description : copy an object by value instead of by reference @@ -135,9 +118,6 @@ function init() { setInterval(update_parent, 500); // setup event handlers - document.body.onkeypress = _CloseOnEsc; - editor._doc.body.onkeypress = _CloseOnEsc; - editor._textArea.onkeypress = _CloseOnEsc; window.onresize = resize_editor; }, 333); // give it some time to meet the new frame }