📝 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

@ -385,7 +385,7 @@ use the `pragma` header to achieve it.
```javascript
const options = {extraHeaders: 'pragma: no-cache\n'};
webContents.loadURL(url, options)
webContents.loadURL(url, options);
```
### `webContents.downloadURL(url)`
@ -942,7 +942,7 @@ win.webContents.debugger.on('message', (event, method, params) => {
if (params.request.url === 'https://www.github.com')
win.webContents.debugger.detach();
}
})
});
win.webContents.debugger.sendCommand('Network.enable');
```