Remove trailing commas in desktop environment docs
This commit is contained in:
parent
9199d0df0a
commit
b4790a7531
1 changed files with 3 additions and 3 deletions
|
@ -70,9 +70,9 @@ var dockMenu = Menu.buildFromTemplate([
|
||||||
{ label: 'New Window', click: function() { console.log('New Window'); } },
|
{ label: 'New Window', click: function() { console.log('New Window'); } },
|
||||||
{ label: 'New Window with Settings', submenu: [
|
{ label: 'New Window with Settings', submenu: [
|
||||||
{ label: 'Basic' },
|
{ label: 'Basic' },
|
||||||
{ label: 'Pro'},
|
{ label: 'Pro'}
|
||||||
]},
|
]},
|
||||||
{ label: 'New Command...'},
|
{ label: 'New Command...'}
|
||||||
]);
|
]);
|
||||||
app.dock.setMenu(dockMenu);
|
app.dock.setMenu(dockMenu);
|
||||||
```
|
```
|
||||||
|
@ -119,7 +119,7 @@ app.setUserTasks([
|
||||||
iconPath: process.execPath,
|
iconPath: process.execPath,
|
||||||
iconIndex: 0,
|
iconIndex: 0,
|
||||||
title: 'New Window',
|
title: 'New Window',
|
||||||
description: 'Create a new window',
|
description: 'Create a new window'
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue