Bug 935554 - Don't show navbar when url changes in a background tab. r=rsilveira

This commit is contained in:
Matt Brubeck 2013-11-06 12:06:47 -08:00
parent acbe123ece
commit c52428f0e3

View File

@ -292,7 +292,9 @@ var ContextUI = {
handleEvent: function handleEvent(aEvent) {
switch (aEvent.type) {
case "URLChanged":
this.displayNavbar();
if (aEvent.target == Browser.selectedBrowser) {
this.displayNavbar();
}
break;
case "MozEdgeUIStarted":
this._onEdgeUIStarted(aEvent);