Skip to content

Commit

Permalink
Invert the colors used to indicate the door is open/closed
Browse files Browse the repository at this point in the history
  • Loading branch information
salbahra committed Mar 8, 2018
1 parent 7994a0e commit 361fe05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion www/cache.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ index.html
NETWORK:
*

# hash: 60f2aea4c581fc78fb1e4dc8532e29719062ab187e9646d2eb975d0cf84dc2ec
# hash: 08cd16546226e9708e04f4b75006a4a57ff9153404bffdace9d214d658ed4e9f
2 changes: 1 addition & 1 deletion www/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<ion-footer-bar class="bar bar-footer center">
<button class="button round-button" ng-class="{'button-assertive': !$root.connected, 'button-balanced': $root.connected}"></button>
<h5 class="padding-left padding-right">{{ $root.connected ? "connected" : "disconnected" }}</h5>
<button class="button round-button" ng-class="{'button-assertive': !$root.activeController.door, 'button-balanced': $root.activeController.door}"></button>
<button class="button round-button" ng-class="{'button-assertive': $root.activeController.door, 'button-balanced': !$root.activeController.door}"></button>
<h5 class="padding-left">{{ $root.activeController.door ? "opened" : "closed" }}</h5>
</ion-footer-bar>
</ion-view>

0 comments on commit 361fe05

Please sign in to comment.