📝 Add missing semicolons

[ci skip]
This commit is contained in:
Plusb Preco 2016-05-11 01:57:55 +09:00
parent 6e0112bf9f
commit 139a4f984a
12 changed files with 32 additions and 32 deletions

View file

@ -65,7 +65,7 @@ code from this:
```javascript
app.on('ready', () => {
const tray = new Tray('/path/to/icon.png');
})
});
```
to this:
@ -74,7 +74,7 @@ to this:
let tray = null;
app.on('ready', () => {
tray = new Tray('/path/to/icon.png');
})
});
```
## I can not use jQuery/RequireJS/Meteor/AngularJS in Electron.