Browse Source

Document reload and toggledevtools roles

Kevin Sawicki 8 years ago
parent
commit
88809b0e0b
2 changed files with 4 additions and 10 deletions
  1. 2 0
      docs/api/menu-item.md
  2. 2 10
      docs/api/menu.md

+ 2 - 0
docs/api/menu-item.md

@@ -56,6 +56,8 @@ The `role` property can have following values:
 * `minimize` - Minimize current window
 * `close` - Close current window
 * `quit`- Quit the application
+* `reload` - Reload the current window
+* `toggledevtools` - Toggle developer tools in the current window
 * `togglefullscreen`- Toggle full screen mode on the current window
 * `resetzoom` - Reset the focused page's zoom level to the original size
 * `zoomin` - Zoom in the focused page by 10%

+ 2 - 10
docs/api/menu.md

@@ -137,18 +137,10 @@ const template = [
     label: 'View',
     submenu: [
       {
-        label: 'Reload',
-        accelerator: 'CmdOrCtrl+R',
-        click (item, focusedWindow) {
-          if (focusedWindow) focusedWindow.reload()
-        }
+        role: 'reload'
       },
       {
-        label: 'Toggle Developer Tools',
-        accelerator: process.platform === 'darwin' ? 'Alt+Command+I' : 'Ctrl+Shift+I',
-        click (item, focusedWindow) {
-          if (focusedWindow) focusedWindow.webContents.toggleDevTools()
-        }
+        role: 'toggledevtools'
       },
       {
         type: 'separator'