зеркало из https://github.com/mozilla/pjs.git
Bug 666597: App Menu is triggered if a modal dialog is up [r=mbrubeck]
This commit is contained in:
Родитель
6759dee8fe
Коммит
85be457def
|
@ -11,7 +11,8 @@ var AppMenu = {
|
|||
overflowMenu : [],
|
||||
|
||||
show: function show() {
|
||||
if (BrowserUI.activePanel || BrowserUI.isPanelVisible())
|
||||
let modals = document.getElementsByClassName("modal-block").length;
|
||||
if (BrowserUI.activePanel || BrowserUI.isPanelVisible() || modals > 0 || BrowserUI.activeDialog)
|
||||
return;
|
||||
|
||||
let shown = 0;
|
||||
|
|
Загрузка…
Ссылка в новой задаче