📝 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

@ -210,7 +210,7 @@ certificate from the store.
app.on('select-client-certificate', function(event, webContents, url, list, callback) {
event.preventDefault();
callback(list[0]);
})
});
```
### Event: 'login'
@ -241,7 +241,7 @@ should prevent the default behavior with `event.preventDefault()` and call
app.on('login', (event, webContents, request, authInfo, callback) => {
event.preventDefault();
callback('username', 'secret');
})
});
```
### Event: 'gpu-process-crashed'