Merge pull request #9 from tcyrus/tcyrus-patch-1

Made Changes Based on Electron Quick Start Guide
This commit is contained in:
Kevin Sawicki 2015-12-03 15:38:46 -08:00
commit 25e99f79b1
2 changed files with 8 additions and 5 deletions

View File

@ -1,6 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="UTF-8">
<title>Hello World!</title> <title>Hello World!</title>
</head> </head>
<body> <body>

12
main.js
View File

@ -1,12 +1,14 @@
var app = require('app'); // Module to control application life. 'use strict';
var BrowserWindow = require('browser-window'); // Module to create native browser window. 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. // Report crashes to our server.
require('crash-reporter').start(); electron.crashReporter.start();
// Keep a global reference of the window object, if you don't, the window will // 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. // be closed automatically when the JavaScript object is garbage collected.
var mainWindow = null; let mainWindow;
// Quit when all windows are closed. // Quit when all windows are closed.
app.on('window-all-closed', function() { app.on('window-all-closed', function() {
@ -24,7 +26,7 @@ app.on('ready', function() {
mainWindow = new BrowserWindow({width: 800, height: 600}); mainWindow = new BrowserWindow({width: 800, height: 600});
// and load the index.html of the app. // and load the index.html of the app.
mainWindow.loadUrl('file://' + __dirname + '/index.html'); mainWindow.loadUrl(`file://${__dirname}/index.html`);
// Open the DevTools. // Open the DevTools.
mainWindow.webContents.openDevTools(); mainWindow.webContents.openDevTools();