Report the reason why the tab bar is collapsed/expanded

This commit is contained in:
YUKI Hiroshi 2015-09-25 14:36:20 +09:00
parent 888a858a7d
commit af4c15f08d

View File

@ -930,7 +930,7 @@ AutoHideBrowser.prototype = inherit(AutoHideBase.prototype, {
this.showHideReason |= aReason;
}
if (!this.expanded)
this.showHideInternal();
this.showHideInternal(aReason);
},
hide : function AHB_hide(aReason) /* PUBLIC API */
@ -950,7 +950,7 @@ AutoHideBrowser.prototype = inherit(AutoHideBase.prototype, {
return;
}
if (this.expanded)
this.showHideInternal();
this.showHideInternal(aReason);
},
onShowing : function AHB_onShowing()