Document reload and toggledevtools roles

This commit is contained in:
Kevin Sawicki 2016-11-15 10:53:36 -08:00
Родитель 88959079bd
Коммит 88809b0e0b
2 изменённых файлов: 4 добавлений и 10 удалений

Просмотреть файл

@ -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%

Просмотреть файл

@ -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'