Browse Source

:bug: Support strict mode on Tutorial

[ci skip]
Hashed Hyphen 9 years ago
parent
commit
e729104d00
1 changed files with 2 additions and 0 deletions
  1. 2 0
      docs/tutorial/quick-start.md

+ 2 - 0
docs/tutorial/quick-start.md

@@ -78,6 +78,8 @@ The `main.js` should create windows and handle system events, a typical
 example being:
 
 ```javascript
+'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.