Skip to content

Commit

Permalink
Add tooltips to action buttons. Fixes #4.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Pascoe authored and Stephen Pascoe committed Sep 9, 2015
1 parent 055c97d commit bdbc762
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions luigi/static/visualiser/index.html
Expand Up @@ -216,9 +216,9 @@

<script type="text/template" name="actionsTemplate">
<div class="span2">
<a href="#{{taskId}}" class="btn btn-info btn-xs" data-action="drawGraph"><i class="fa fa-sitemap"></i></a>
{{#error}}<button class="btn btn-danger btn-xs showError"><i class="fa fa-bug"></i></button>{{/error}}
{{#re_enable}}<a class="btn btn-warning btn-xs re-enable-button" data-task-id="{{taskId}}">Re-enable</a>{{/re_enable}}
<a href="#{{taskId}}" class="btn btn-info btn-xs" title="View graph" data-toggle="tooltip"><i class="fa fa-sitemap"></i></a>
{{#error}}<button class="btn btn-danger btn-xs showError" title="Show error" data-toggle="tooltip"><i class="fa fa-bug"></i></button>{{/error}}
{{#re_enable}}<a class="btn btn-warning btn-xs re-enable-button" title="Re-enable" data-toggle="tooltip" data-task-id="{{taskId}}">Re-enable</a>{{/re_enable}}
</div>
</script>
<script type="text/template" name="rowDetailsTemplate">
Expand Down

0 comments on commit bdbc762

Please sign in to comment.