📝 Add missing semicolons
[ci skip]
This commit is contained in:
parent
6e0112bf9f
commit
139a4f984a
12 changed files with 32 additions and 32 deletions
|
@ -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');
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue