From 5abc41222cdcb97acd4f79828d5fabde3ce29a06 Mon Sep 17 00:00:00 2001 From: Justin SB Date: Fri, 19 Sep 2014 16:04:29 -0700 Subject: [PATCH] Hide progress bar when we're not watching any tasks --- tools/console.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/console.js b/tools/console.js index ac3cdc49ed..951563c54f 100644 --- a/tools/console.js +++ b/tools/console.js @@ -256,7 +256,10 @@ _.extend(Console.prototype, { var self = this; var progress = self._watching; - if (!progress) return; + if (!progress) { + self.hideProgressBar(); + return; + } progress.addWatcher(function (state) { //console.log(state);