From 2be1bd0463eb63e651f796935bb20d168dab2168 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 2 Jul 2014 06:45:55 -0400 Subject: [PATCH] fix(console) handler: add new prompt on empty command --- lib/client/console.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/client/console.js b/lib/client/console.js index b43e4398..6512702b 100644 --- a/lib/client/console.js +++ b/lib/client/console.js @@ -50,6 +50,8 @@ var CloudCmd, Util, DOM, CloudFunc, $; function handler(command) { if (command) Socket.emit(CHANNEL, command); + else + jqconsole.Prompt(true, handler); } function show(callback) {