From ede78c6a84217514b70afbb231086fd5b097d2c9 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 2 Mar 2016 02:33:53 -0800 Subject: [PATCH] re-order help menu --- index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.js b/index.js index 32ed79b2..94c23abf 100644 --- a/index.js +++ b/index.js @@ -205,19 +205,19 @@ var template = [ role: 'help', submenu: [ { - label: 'Report an Issue', - click: function () { electron.shell.openExternal('https://github.com/feross/webtorrent-app/issues') } + label: 'Learn more about WebTorrent', + click: function () { electron.shell.openExternal('https://webtorrent.io') } }, { - label: 'Go to GitHub project', + label: 'Contribute on GitHub', click: function () { electron.shell.openExternal('https://github.com/feross/webtorrent-app') } }, { type: 'separator' }, { - label: 'Learn more about WebTorrent', - click: function () { electron.shell.openExternal('https://webtorrent.io') } + label: 'Report an Issue...', + click: function () { electron.shell.openExternal('https://github.com/feross/webtorrent-app/issues') } } ] }