зеркало из https://github.com/mozilla/gecko-dev.git
Bug 783795 - locationbar, personalbar, menubar, statusbar, and toolbar are true in a webapp - should be false r=wesj
This commit is contained in:
Родитель
1673c2d188
Коммит
e7690f9135
|
@ -100,7 +100,13 @@ BrowserCLH.prototype = {
|
|||
width: width,
|
||||
height: height
|
||||
};
|
||||
browserWin = openWindow(null, "chrome://browser/content/browser.xul", "_blank", "chrome,dialog=no,all", args);
|
||||
|
||||
// Make sure webapps do not have: locationbar, personalbar, menubar, statusbar, and toolbar
|
||||
let flags = "chrome,dialog=no";
|
||||
if (!pinned)
|
||||
flags += ",all";
|
||||
|
||||
browserWin = openWindow(null, "chrome://browser/content/browser.xul", "_blank", flags, args);
|
||||
}
|
||||
|
||||
aCmdLine.preventDefault = true;
|
||||
|
|
Загрузка…
Ссылка в новой задаче