Bug 977217 - [Australis] Clicking API-widget borders in the menu panel does nothing. r=Gijs

This commit is contained in:
Jared Wein
2014-03-07 19:14:31 -05:00
parent 3dbba20661
commit 3746e8440f
2 changed files with 10 additions and 22 deletions

View File

@@ -273,18 +273,13 @@
}
break;
case "overflow":
switch (aEvent.target.localName) {
case "vbox":
// Resize the right view on the next tick.
if (this.showingSubView) {
setTimeout(this._syncContainerWithSubView.bind(this), 0);
} else if (!this.transitioning) {
setTimeout(this._syncContainerWithMainView.bind(this), 0);
}
break;
case "toolbarbutton":
aEvent.target.setAttribute("fadelabel", "true");
break;
if (aEvent.target.localName == "vbox") {
// Resize the right view on the next tick.
if (this.showingSubView) {
setTimeout(this._syncContainerWithSubView.bind(this), 0);
} else if (!this.transitioning) {
setTimeout(this._syncContainerWithMainView.bind(this), 0);
}
}
break;
case "popupshowing":