Bug 590867 - It is difficult to display context menu "Exit Full Screen Mode" by right-clicking, if browser is "Tabs on Top"; r=dietrich ui-r=faaborg a=beltzner

This commit is contained in:
Alan Thomas 2011-02-15 19:36:54 -05:00
Родитель e7a38b8a74
Коммит 3235c2f732
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -3981,11 +3981,11 @@ var FullScreen = {
els[i].setAttribute("iconsize", "small");
}
// Give the main nav bar the fullscreen context menu, otherwise remove it
// to prevent breakage
// Give the main nav bar and the tab bar the fullscreen context menu,
// otherwise remove context menu to prevent breakage
els[i].setAttribute("saved-context",
els[i].getAttribute("context"));
if (els[i].id == "nav-bar")
if (els[i].id == "nav-bar" || els[i].id == "TabsToolbar")
els[i].setAttribute("context", "autohide-context");
else
els[i].removeAttribute("context");