-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
55 lines (48 loc) · 1.7 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*jslint node: true */
/*jslint esversion: 6 */
/*!
* https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
* https://www.electronjs.org/docs/tutorial/security
*/
const electron = require("electron");
const app = electron.app; /* a life cycle module */
const BrowserWindow = electron.BrowserWindow; /* a browser window module */
const path = require("path");
/* a global link */
/* the window will close once the JS object is cleared */
var mainWindow = null;
/* check if all the app’s windows are closed and shut down the app */
app.on("window-all-closed", function () {
/* in OS X stay active until Cmd + Q is pressed */
if (process.platform !== "darwin") {
app.quit();
}
});
/* called when Electron inits and is ready to create a browser window */
app.on("ready", function () {
/* create the window */
/* https://github.com/electron/electron/blob/master/docs/api/browser-window.md */
/* https://electronjs.org/docs/tutorial/security */
mainWindow = new BrowserWindow({
webPreferences: {
contextIsolation: false,
worldSafeExecuteJavaScript: true,
nodeIntegration: true
},
width: 1080,
height: 688,
icon: "favicon.ico",
title: "img-lightbox Demo Page"
});
/* load index.html */
mainWindow.loadURL(path.join("file://", __dirname, "/index.html"));
/* open DevTools. */
/* mainWindow.webContents.openDevTools(); */
/* gets executed when window close event is generated */
mainWindow.on("closed", function () {
/* remove the link to the window */
mainWindow = null;
});
/* https://stackoverflow.com/questions/48854265/why-do-i-see-an-electron-security-warning-after-updating-my-electron-project-t */
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = "1";
});