summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Coldrick <adam@sotk.co.uk>2015-09-26 14:52:31 +0100
committerAdam Coldrick <adam@sotk.co.uk>2015-09-28 20:20:09 +0100
commit5575dee73e16eecb7800316eea49e009f2cf3f71 (patch)
tree9c5cb50c16ecbea6057fe5de123f2b0a97aebd0c
parent515bea08a705cd6437050365fcc9bc0de39ad846 (diff)
downloadciat-ui-5575dee73e16eecb7800316eea49e009f2cf3f71.tar.gz
Add active status
-rw-r--r--index.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.html b/index.html
index aa1d344..aa7570d 100644
--- a/index.html
+++ b/index.html
@@ -11,7 +11,8 @@
<div class="visualisation" ng-controller="VisualisationController">
<div class="box"
- ng-class="{'pass': step.lastBuild.success}"
+ ng-class="{'pass': step.lastBuild.success,
+ 'active': step.data.status === 'building'}"
ng-repeat="step in steps">
{{step.name}}
</div>