Created
February 2, 2018 22:24
-
-
Save bgrins/0918cb18aa17bbf5ded240d2c05a965e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define MAC_NON_BROWSER_WINDOW | |
# All JS files which are not content (only) dependent that browser.xul | |
# wishes to include *must* go into the global-scripts.inc file | |
# so that they can be shared by this overlay. | |
#include global-scripts.inc | |
<script type="application/javascript"> | |
function OpenBrowserWindowFromDockMenu(options) { | |
let win = OpenBrowserWindow(options); | |
win.addEventListener("load", function listener() { | |
win.removeEventListener("load", listener); | |
let dockSupport = Cc["@mozilla.org/widget/macdocksupport;1"] | |
.getService(Ci.nsIMacDockSupport); | |
dockSupport.activateApplication(true); | |
}); | |
return win; | |
} | |
addEventListener("load", function() { gBrowserInit.nonBrowserWindowStartup() }, false); | |
addEventListener("unload", function() { gBrowserInit.nonBrowserWindowShutdown() }, false); | |
</script> | |
# All sets except for popupsets (commands, keys, stringbundles and broadcasters) *must* go into the | |
# browser-sets.inc file for sharing with hiddenWindow.xul. | |
#include browser-sets.inc | |
# The entire main menubar is placed into browser-menubar.inc, so that it can be shared by | |
# hiddenWindow.xul. | |
#include browser-menubar.inc | |
<!-- Dock menu --> | |
<popupset> | |
<menupopup id="menu_mac_dockmenu"> | |
<!-- The command cannot be cmd_newNavigator because we need to activate | |
the application. --> | |
<menuitem label="&newNavigatorCmd.label;" oncommand="OpenBrowserWindowFromDockMenu();" | |
id="macDockMenuNewWindow" /> | |
<menuitem label="&newPrivateWindow.label;" oncommand="OpenBrowserWindowFromDockMenu({private: true});" /> | |
</menupopup> | |
</popupset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment