From 4c17e4721fd7753b03e525d63c673eee0b115b05 Mon Sep 17 00:00:00 2001 From: Jens Frank Date: Wed, 6 Oct 2004 20:19:06 +0000 Subject: [PATCH] BUG#634, Patch#2.1: Patch by Tom Gilder. Avoids flickering logo in MSIE 5.5 and newer --- skins/common/IEFixes.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/skins/common/IEFixes.js b/skins/common/IEFixes.js index 4344f9c8c8..68debfe745 100644 --- a/skins/common/IEFixes.js +++ b/skins/common/IEFixes.js @@ -1,12 +1,14 @@ // IE fixes javascript var isMSIE55 = (window.showModalDialog && window.clipboardData && window.createPopup); +var doneIETransform; if (document.attachEvent) document.attachEvent('onreadystatechange', hookit); function hookit() { - if (document.getElementById && document.getElementById('bodyContent')) { + if (!doneIETransform && document.getElementById && document.getElementById('bodyContent')) { + doneIETransform = true; fixalpha(); relativeforfloats(); } -- 2.20.1