This commit is contained in:
Jessica Lord 2015-12-16 11:13:32 -08:00
parent 3f26258efd
commit 49228fc510
1 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,10 @@
'use strict';
const electron = require('electron');
const app = electron.app; // Module to control application life.
const BrowserWindow = electron.BrowserWindow; // Module to create native browser window.
// Module to control application life.
const app = electron.app;
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow;
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.