From fa6019e7ed85efc635e874f7a3c682c95d5f4629 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 2 Jun 2014 06:43:41 -0400 Subject: [PATCH] feature(console) handler: rm Images: showLoad, hide --- lib/client/console.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/client/console.js b/lib/client/console.js index 5403f42a..16fda412 100644 --- a/lib/client/console.js +++ b/lib/client/console.js @@ -64,10 +64,8 @@ var CloudCmd, Util, DOM, CloudFunc, $; // Handle a command. var handler = function(command) { - if (command) { - Images.showLoad({ top:true }); + if (command) Socket.emit(CHANNEL, command); - } jqconsole.Prompt(true, handler); }; @@ -177,8 +175,6 @@ var CloudCmd, Util, DOM, CloudFunc, $; log(json.stdout); error(json.stderr); } - - DOM.Images.hide(); } init();