From e3c9860f647ccc4df2beb738bd02700d64abda01 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 15 Jan 2016 13:46:58 -0800 Subject: [PATCH] add a dummy share option to the menu --- console/src/main.js | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/console/src/main.js b/console/src/main.js index 8576e6d907..668ddf304f 100644 --- a/console/src/main.js +++ b/console/src/main.js @@ -315,7 +315,7 @@ function buildMenuArray(serverState) { ======= var menuArray = [ { - label: "Server - Stopped", + label: 'Server - Stopped', enabled: false }, { @@ -330,26 +330,33 @@ function buildMenuArray(serverState) { type: 'separator' }, { - label: "Start Server", + label: 'Start Server', click: function() { homeServer.restart(); } }, { - label: "Stop Server", + label: 'Stop Server', visible: false, click: function() { homeServer.stop(); } }, { - label: "Settings", + label: 'Settings', click: function() { shell.openExternal('http://localhost:40100/settings'); }, enabled: false }, { - label: "View Logs", + label: 'View Logs', click: function() { openFileBrowser(logPath); } }, { type: 'separator' }, + { + label: 'Share', + click: function() { } + }, + { + type: 'separator' + }, { label: 'Quit', accelerator: 'Command+Q',