View menu: put dev menu items at bottom

This commit is contained in:
Feross Aboukhadijeh
2016-03-02 14:21:16 -08:00
parent fd7c819a4e
commit 8dbf9b9f11

View File

@@ -164,13 +164,6 @@ var template = [
{
label: 'View',
submenu: [
{
label: 'Reload',
accelerator: 'CmdOrCtrl+R',
click: function (item, focusedWindow) {
if (focusedWindow) focusedWindow.reload()
}
},
{
label: 'Toggle Full Screen',
accelerator: (function () {
@@ -181,6 +174,16 @@ var template = [
if (focusedWindow) focusedWindow.setFullScreen(!focusedWindow.isFullScreen())
}
},
{
type: 'separator'
},
{
label: 'Reload',
accelerator: 'CmdOrCtrl+R',
click: function (item, focusedWindow) {
reload(focusedWindow)
}
},
{
label: 'Toggle Developer Tools',
accelerator: (function () {