fix Menu example

This commit is contained in:
Zeke Sikelianos 2016-10-10 23:01:35 -07:00
parent d5b3ef5380
commit 619f74fa12

View file

@ -16,7 +16,7 @@ An example of creating the application menu in the main process with the
simple template API:
```javascript
const {Menu} = require('electron')
const {app, Menu} = require('electron')
const template = [
{
@ -111,9 +111,8 @@ const template = [
]
if (process.platform === 'darwin') {
const name = require('electron').remote.app.getName()
template.unshift({
label: name,
label: app.getName(),
submenu: [
{
role: 'about'