diff --git a/console/src/index.html b/console/src/index.html index 122e25c25a..a234827974 100644 --- a/console/src/index.html +++ b/console/src/index.html @@ -92,27 +92,5 @@ - - - - diff --git a/console/src/index.js b/console/src/index.js index e3339017a5..7eb5e6728f 100755 --- a/console/src/index.js +++ b/console/src/index.js @@ -2,18 +2,20 @@ $(function() { const ipcRenderer = require('electron').ipcRenderer; function onProcessUpdate(event, arg) { - // Update interface console.log("update", event, arg); - var state = arg.interface.state; - $('#process-interface .status').text(state); - var on = state != 'stopped'; - if (on) { - $('#process-interface .power-on').hide(); - $('#process-interface .power-off').show(); - } else { - $('#process-interface .power-on').show(); - $('#process-interface .power-off').hide(); - } + + // Update interface + + // var state = arg.interface.state; + // $('#process-interface .status').text(state); + // var on = state != 'stopped'; + // if (on) { + // $('#process-interface .power-on').hide(); + // $('#process-interface .power-off').show(); + // } else { + // $('#process-interface .power-on').show(); + // $('#process-interface .power-off').hide(); + // } } $('#process-interface .power-on').click(function() {