Skip to content

Commit

Permalink
Update main.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tcyrus committed Nov 24, 2015
1 parent 1a2e376 commit 89521a4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions main.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
var app = require('app'); // Module to control application life.
var BrowserWindow = require('browser-window'); // Module to create native browser window.
'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.

// Report crashes to our server.
require('crash-reporter').start();

// 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.
var mainWindow = null;
let mainWindow;

// Quit when all windows are closed.
app.on('window-all-closed', function() {
Expand All @@ -24,7 +26,7 @@ app.on('ready', function() {
mainWindow = new BrowserWindow({width: 800, height: 600});

// and load the index.html of the app.
mainWindow.loadUrl('file://' + __dirname + '/index.html');
mainWindow.loadUrl(`file://${__dirname}/index.html`);

// Open the DevTools.
mainWindow.webContents.openDevTools();
Expand Down

0 comments on commit 89521a4

Please sign in to comment.