Skip to content

Commit

Permalink
added tooltips to buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
dkavanagh committed Oct 15, 2017
1 parent 98be201 commit 194363b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pybowieconsole/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ <h2>Bowie Console</h2>
<div class="md-padding" layout="row" layout-align="center center">
<div layout="column" class="md-padding">
<div layout="row">
<md-button class="btn-red md-fab" aria-label="red" ng-click="redClicked();"></md-button>
<md-button class="btn-yellow md-fab" aria-label="yellow" ng-click="yellowClicked();"></md-button>
<md-button class="btn-green md-fab" aria-label="green" ng-click="greenClicked();"></md-button>
<md-button class="btn-red md-fab" aria-label="red" ng-click="redClicked();" title="drive with joystick"></md-button>
<md-button class="btn-yellow md-fab" aria-label="yellow" ng-click="yellowClicked();" title="move arm with joystick"></md-button>
<md-button class="btn-green md-fab" aria-label="green" ng-click="greenClicked();" title="collect - fast"></md-button>
</div>
<div layout="row">
<md-button class="btn-white md-fab" aria-label="white" ng-click="whiteClicked();"></md-button>
<md-button class="btn-blue md-fab" aria-label="blue" ng-click="blueClicked();"></md-button>
<md-button class="btn-black md-fab" aria-label="black" ng-click="blackClicked();"></md-button>
<md-button class="btn-white md-fab" aria-label="white" ng-click="whiteClicked();" title="deposit"></md-button>
<md-button class="btn-blue md-fab" aria-label="blue" ng-click="blueClicked();" title="collect - slow"></md-button>
<md-button class="btn-black md-fab" aria-label="black" ng-click="blackClicked();" title="dance!"></md-button>
</div>
</div>
<div layout="column">
Expand Down

0 comments on commit 194363b

Please sign in to comment.