Bug 783795 - locationbar, personalbar, menubar, statusbar, and toolbar are true in a webapp - should be false r=wesj

This commit is contained in:
Mark Finkle 2012-10-13 11:18:22 -04:00
Родитель 1673c2d188
Коммит e7690f9135
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -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;