📝 Fix code style issue

* Change `var` to `let`.
* Change `function() {}` to `() => {}`.
* Use shorthand function syntax on object notation.
* Remove spaces between object notation brackets.
* Small fixes.
This commit is contained in:
Plusb Preco 2016-05-11 02:15:09 +09:00
parent 139a4f984a
commit f1b184ef78
23 changed files with 64 additions and 67 deletions

View file

@ -82,15 +82,15 @@ example being:
```javascript
const electron = require('electron');
// Module to control application life.
const app = electron.app;
const {app} = electron;
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow;
const {BrowserWindow} = electron;
// 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.
let mainWindow;
function createWindow () {
function createWindow() {
// Create the browser window.
mainWindow = new BrowserWindow({width: 800, height: 600});