Update menu.md
authorEric <calidion@users.noreply.github.com>
Wed, 3 Aug 2016 02:10:56 +0000 (10:10 +0800)
committerGitHub <noreply@github.com>
Wed, 3 Aug 2016 02:10:56 +0000 (10:10 +0800)
1. add difference notice
2.  changed `render process` to `main process`

docs/api/menu.md

index ee56fc6..c58a413 100644 (file)
@@ -8,29 +8,26 @@ the `remote` module.
 Each menu consists of multiple [menu items](menu-item.md) and each menu item can
 have a submenu.
 
-Below is an example of creating a menu dynamically in a web page
-(render process) by using the [remote](remote.md) module, and showing it when
-the user right clicks the page:
+## Process Difference Notice
 
-```html
-<!-- index.html -->
-<script>
+Due to Menu and MenuItem can be used in two processes, the way they are included is slightly different.
+
+### Main process
+```
+const {Menu, MenuItem} = require('electron');
+```
+
+### Render process
+```
 const {remote} = require('electron')
 const {Menu, MenuItem} = remote;
+```
 
-const menu = new Menu()
-menu.append(new MenuItem({label: 'MenuItem1', click() { console.log('item 1 clicked') }}))
-menu.append(new MenuItem({type: 'separator'}))
-menu.append(new MenuItem({label: 'MenuItem2', type: 'checkbox', checked: true}))
+## Examples
 
-window.addEventListener('contextmenu', (e) => {
-  e.preventDefault()
-  menu.popup(remote.getCurrentWindow())
-}, false)
-</script>
-```
+### Main process
 
-An example of creating the application menu in the render process with the
+An example of creating the application menu in the main process with the
 simple template API:
 
 ```javascript
@@ -181,6 +178,31 @@ const menu = Menu.buildFromTemplate(template)
 Menu.setApplicationMenu(menu)
 ```
 
+### Render process
+
+Below is an example of creating a menu dynamically in a web page
+(render process) by using the [remote](remote.md) module, and showing it when
+the user right clicks the page:
+
+```html
+<!-- index.html -->
+<script>
+const {remote} = require('electron')
+const {Menu, MenuItem} = remote;
+
+const menu = new Menu()
+menu.append(new MenuItem({label: 'MenuItem1', click() { console.log('item 1 clicked') }}))
+menu.append(new MenuItem({type: 'separator'}))
+menu.append(new MenuItem({label: 'MenuItem2', type: 'checkbox', checked: true}))
+
+window.addEventListener('contextmenu', (e) => {
+  e.preventDefault()
+  menu.popup(remote.getCurrentWindow())
+}, false)
+</script>
+```
+
+
 ## Class: Menu
 
 ### `new Menu()`