💄 Add semicolon to global-shortcut code example
This keeps this line consistent with the rest of the documentation.
This commit is contained in:
parent
5bdc077b48
commit
6f61832a34
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ app.on('ready', function() {
|
||||||
// Register a 'ctrl+x' shortcut listener.
|
// Register a 'ctrl+x' shortcut listener.
|
||||||
var ret = globalShortcut.register('ctrl+x', function() {
|
var ret = globalShortcut.register('ctrl+x', function() {
|
||||||
console.log('ctrl+x is pressed');
|
console.log('ctrl+x is pressed');
|
||||||
})
|
});
|
||||||
|
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
console.log('registration failed');
|
console.log('registration failed');
|
||||||
|
|
Loading…
Reference in a new issue