Fixed bug #440609 (Javascript error on left frame (IE4.0))

This commit is contained in:
Loïc Chapeaux
2001-07-12 18:11:22 +00:00
parent 3fb9685e08
commit 4c3d5793a9

View File

@@ -179,7 +179,7 @@ function expandBase(el, unexpand)
} // end of the DOM case } // end of the DOM case
else if (isIE4) { else if (isIE4) {
var whichEl = document.all(el + 'Child'); var whichEl = document.all(el + 'Child');
var whichIm = document.images.item(el + 'Child'); var whichIm = document.images.item(el + 'Img');
if (whichEl.style.display == 'none') { if (whichEl.style.display == 'none') {
whichEl.style.display = 'block'; whichEl.style.display = 'block';
whichIm.src = imgOpened.src; whichIm.src = imgOpened.src;