Skip to content

Commit

Permalink
shorter genre pin tooltips fixes position issues.
Browse files Browse the repository at this point in the history
i think is related to this: angular-ui/bootstrap#2996
  • Loading branch information
jasonpriem committed Mar 7, 2015
1 parent 929675a commit b1b9e35
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions totalimpactwebapp/static/dist/Impactstory.js
Original file line number Diff line number Diff line change
Expand Up @@ -7825,16 +7825,16 @@ angular.module("collection-page/genre-page.tpl.html", []).run(["$templateCache",
"\n" +
" <a ng-click=\"KeyMetrics.pin(card)\"\n" +
" ng-if=\"!KeyMetrics.isPinned(card)\"\n" +
" tooltip=\"Pin this metric to your profile front page\"\n" +
" tooltip-placement=\"bottom\"\n" +
" tooltip=\"Pin to front page\"\n" +
" tooltip-placement=\"left\"\n" +
" class=\"feature-this\">\n" +
" <i class=\"fa fa-thumb-tack\"></i>\n" +
" </a>\n" +
"\n" +
" <a ng-click=\"KeyMetrics.unpin(card)\"\n" +
" ng-if=\"KeyMetrics.isPinned(card)\"\n" +
" tooltip=\"Unpin this metric from your profile front page\"\n" +
" tooltip-placement=\"bottom\"\n" +
" tooltip=\"Unpin\"\n" +
" tooltip-placement=\"left\"\n" +
" class=\"unfeature-this\">\n" +
" <i class=\"fa fa-thumb-tack\"></i>\n" +
" </a>\n" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ <h2>

<a ng-click="KeyMetrics.pin(card)"
ng-if="!KeyMetrics.isPinned(card)"
tooltip="Pin this metric to your profile front page"
tooltip-placement="bottom"
tooltip="Pin to front page"
tooltip-placement="left"
class="feature-this">
<i class="fa fa-thumb-tack"></i>
</a>

<a ng-click="KeyMetrics.unpin(card)"
ng-if="KeyMetrics.isPinned(card)"
tooltip="Unpin this metric from your profile front page"
tooltip-placement="bottom"
tooltip="Unpin"
tooltip-placement="left"
class="unfeature-this">
<i class="fa fa-thumb-tack"></i>
</a>
Expand Down

0 comments on commit b1b9e35

Please sign in to comment.