Bug 94458 (sorta): fix "popupHiding" to "popuphiding". Case sensitive 'n stuff. r=mozbot, sr=hyatt

This commit is contained in:
jaggernaut%netscape.com 2006-09-14 05:59:30 +00:00
parent f075d7d480
commit 16f150a12d

View File

@ -353,12 +353,12 @@
if (val != null) {
this.parentNode.mSelectedIndex = null;
this.parentNode.addEventListener("mouseover", this.parentMouseoverListener, false);
this.parentNode.addEventListener("popupHiding", this.parentDestroyListener, false);
this.parentNode.addEventListener("popuphiding", this.parentDestroyListener, false);
if (this.activeChild)
this.activeChild.setAttribute("menuactive", "true");
} else {
this.parentNode.removeEventListener("mouseover", this.parentMouseoverListener, false);
this.parentNode.removeEventListener("popupHiding", this.parentDestroyListener, false);
this.parentNode.removeEventListener("popuphiding", this.parentDestroyListener, false);
}
]]></setter>