bitburner-src/electron/main.js

39 lines
922 B
JavaScript
Raw Normal View History

const { app, BrowserWindow, Menu, globalShortcut, shell } = require("electron");
2021-09-21 19:29:16 +02:00
2021-09-15 18:22:36 +02:00
Menu.setApplicationMenu(false);
function createWindow() {
const win = new BrowserWindow({
show: false,
webPreferences: {
2021-09-23 19:15:27 +02:00
devTools: true,
2021-09-15 18:22:36 +02:00
},
});
win.removeMenu();
win.maximize();
win.loadFile("index.html");
win.show();
2021-09-23 19:15:27 +02:00
win.webContents.openDevTools();
2021-09-21 19:29:16 +02:00
globalShortcut.register("f5", function () {
win.loadFile("index.html");
});
globalShortcut.register("f8", function () {
win.loadFile("index.html", { query: { noScripts: "true" } });
});
win.webContents.on("new-window", function (e, url) {
// make sure local urls stay in electron perimeter
if ("file://" === url.substr(0, "file://".length)) {
return;
}
// and open every other protocols on the browser
e.preventDefault();
shell.openExternal(url);
});
2021-09-15 18:22:36 +02:00
}
app.whenReady().then(() => {
createWindow();
});