diff options
author | Pedro Alvarez <pedro.alvarez@codethink.co.uk> | 2015-10-01 14:22:07 +0100 |
---|---|---|
committer | Pedro Alvarez <pedro.alvarez@codethink.co.uk> | 2015-10-01 14:22:07 +0100 |
commit | 1e659642f2f957b0d489132e1471d24ea81eee3b (patch) | |
tree | 6d42a06e14827fe74a1ac6cd7e9a40b61fa4d390 /js | |
parent | 10d1473a9767c6c103bc86e4f81bd7ac4b351b47 (diff) | |
download | ciat-ui-1e659642f2f957b0d489132e1471d24ea81eee3b.tar.gz |
Failed attempt to hide status bar in completed builds
Diffstat (limited to 'js')
-rw-r--r-- | js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -86,7 +86,7 @@ app.controller('VisualisationController', function($scope, $http, $q, $interval) }); } else if (key.indexOf("Build") > -1) { - var progressStyle = "progress-bar-success progress-bar-striped" + var progressStyle = "progress-bar-success progress-bar-striped ng-hide" if (state === "building" ) { progressStyle = "progress-bar-warning progress-bar-striped active" progress = (timeRunning * 100) / previousTime; |