Skip to content

Commit

Permalink
Add missing overview tooltips
Browse files Browse the repository at this point in the history
Adds tooltips for enable/disable shard allocation, expanded/condensed view, dropdown menu.
  • Loading branch information
noderat authored Oct 25, 2017
1 parent 516987f commit bfbff3b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions public/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@
<td>
<div class="row">
<div class="col-lg-3 col-md-6">
<i class="fa fa-lock fa-2x table-control red normal-action" ng-click="enableShardAllocation()"
<i class="fa fa-lock fa-2x table-control red normal-action" title="enable shard allocation" ng-click="enableShardAllocation()"
ng-hide="shardAllocation"></i>
<i class="fa fa-unlock fa-2x table-control normal-action" ng-click="disableShardAllocation()"
<i class="fa fa-unlock fa-2x table-control normal-action" title="disable shard allocation" ng-click="disableShardAllocation()"
ng-show="shardAllocation"></i>
</div>
<div class="col-lg-3 col-md-6">
<i class="fa fa-expand fa-2x normal-action table-control" ng-hide="expandedView"
ng-click="expandedView = true"></i>
title="expand view" ng-click="expandedView = true"></i>
<i class="fa fa-compress fa-2x normal-action table-control" ng-show="expandedView"
ng-click="expandedView = false"></i>
title="condense view" ng-click="expandedView = false"></i>
</div>
<div class="col-lg-3 col-md-6">
<i class="fa fa-sort-alpha-asc fa-2x normal-action table-control" title="sort ascending"
Expand All @@ -63,7 +63,7 @@
<div class="col-lg-3 col-md-6">
<div class="dropdown">
<span class="title normal-action" type="button" id="dropcluster" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
aria-haspopup="true" aria-expanded="false" title="more options">
<i class="fa fa-caret-down fa-2x table-control"></i>
</span>
<ul class="dropdown-menu" aria-labelledby="dropcluster">
Expand Down

0 comments on commit bfbff3b

Please sign in to comment.