forked from aurelia/skeleton-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
39 lines (33 loc) · 1.01 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
//Note: This file is provided as an aid to help you get up and running with
//Electron for desktop apps. See the readme file for more information.
/* eslint-disable strict, no-var, no-console */
'use strict';
const electron = require('electron');
const {app} = electron;
const {BrowserWindow} = electron;
let mainWindow;
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('ready', () => {
mainWindow = new BrowserWindow({
width: 800,
height: 600,
// Note: The following line turns off Node integration to allow
// jQuery to work properly. If you need Node integration, please
// see the Electron FAQ for how to enable this:
// http://electron.atom.io/docs/faq/
webPreferences: {
nodeIntegration: false
}
});
mainWindow.loadURL(`file://${__dirname}/index.html`);
mainWindow.webContents.on('did-finish-load', () => {
mainWindow.setTitle(app.getName());
});
mainWindow.on('closed', () => {
mainWindow = null;
});
});