Skip to content

Commit

Permalink
Fix tooltip on share icon.
Browse files Browse the repository at this point in the history
On firefox, the tooltip for the share icon wasn't showing due to the title
attribute being on the icon rather than the button.
  • Loading branch information
JakeHartnell committed Jul 7, 2015
1 parent 1efb116 commit 0ff8ebf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions h/templates/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@
<div class="inner content">
<div class="pull-left">
<button class="btn btn-clean"
ng-click="shareDialog.visible = !shareDialog.visible"
ng-show="showShareButton"
><i href="" title="Share this page" class="h-icon-share btn-icon"></i></button>
ng-click="shareDialog.visible = !shareDialog.visible"
ng-show="showShareButton"
title="Share this page">
<i class="h-icon-share btn-icon"></i></button>
</div>

<div class="pull-right" ng-switch="auth.user">
Expand Down

0 comments on commit 0ff8ebf

Please sign in to comment.