:memo: Update FAQ to ES6 [ci skip]
authorSteve Kinney <hello@stevekinney.net>
Wed, 4 May 2016 18:02:24 +0000 (12:02 -0600)
committerSteve Kinney <hello@stevekinney.net>
Wed, 4 May 2016 18:02:24 +0000 (12:02 -0600)
docs/faq/electron-faq.md

index 02d7274..c690b7e 100644 (file)
@@ -60,16 +60,16 @@ If you want a quick fix, you can make the variables global by changing your
 code from this:
 
 ```javascript
-app.on('ready', function() {
-  var tray = new Tray('/path/to/icon.png');
+app.on('ready', () => {
+  const tray = new Tray('/path/to/icon.png');
 })
 ```
 
 to this:
 
 ```javascript
-var tray = null;
-app.on('ready', function() {
+let tray = null;
+app.on('ready', () => {
   tray = new Tray('/path/to/icon.png');
 })
 ```
@@ -84,7 +84,7 @@ To solve this, you can turn off node integration in Electron:
 
 ```javascript
 // In the main process.
-var mainWindow = new BrowserWindow({
+let mainWindow = new BrowserWindow({
   webPreferences: {
     nodeIntegration: false
   }