mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Hide progress bar when we're not watching any tasks
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user