Bug #15829 ยป typo3-4.0-navframehighlightIE.diff
alt_db_navframe.php 2006-04-14 15:19:50.999324656 +0200 | ||
---|---|---|
// Remove old:
|
||
theObj = document.getElementById(top.fsMod.navFrameHighlightedID[frameSetModule]);
|
||
if (theObj) {
|
||
theObj.setAttribute("class", "");
|
||
if (bw.ie5) {
|
||
theObj.setAttribute("className", "");
|
||
} else {
|
||
theObj.setAttribute("class", "");
|
||
}
|
||
}
|
||
// Set new:
|
||
top.fsMod.navFrameHighlightedID[frameSetModule] = highLightID;
|
||
theObj = document.getElementById(highLightID);
|
||
if (theObj) {
|
||
theObj.setAttribute("class", "navFrameHL");
|
||
if (bw.ie5) {
|
||
theObj.setAttribute("className", "navFrameHL");
|
||
} else {
|
||
theObj.setAttribute("class", "navFrameHL");
|
||
}
|
||
}
|
||
}
|
||