Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Commit

Permalink
Merge pull request #54 from Rabrennie/tooltip-fixes
Browse files Browse the repository at this point in the history
fix(ui): tooltips now have full names of points
  • Loading branch information
seiyria committed Dec 3, 2015
2 parents ccb67d0 + f9b4049 commit 65b26b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/jade/templates/upgrades.jade
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ script(type="text/ng-template", id="upgrades")
.col-md-12.margin-bottom-15
.row.padding-left-15
.col-xs-4
span(uib-tooltip="SP is earned by taking steps and earning score. It is used to upgrade your adventurers.", tooltip-placement="right", tooltip-append-to-body="true") SP
span(uib-tooltip="Score Points (SP) are earned by taking steps and earning score. They are used to upgrade your adventurers.", tooltip-placement="right", tooltip-append-to-body="true") SP
span.pull-right {{currencyDataManager.currency.sp | number:0}}
.col-xs-4
span(uib-tooltip="KP is earned by killing monsters. It is used to upgrade your monsters.", tooltip-placement="right", tooltip-append-to-body="true") KP
span(uib-tooltip="Kill Points (KP) are earned by killing monsters. They are used to upgrade your monsters.", tooltip-placement="right", tooltip-append-to-body="true") KP
span.pull-right {{currencyDataManager.currency.kp | number:0}}
.col-xs-4
span(uib-tooltip="VP is earned by winning the game. It is used to upgrade your dungeon.", tooltip-placement="right", tooltip-append-to-body="true") VP
span(uib-tooltip="Victory Poitns (VP) are earned by winning the game. They are used to upgrade your dungeon.", tooltip-placement="right", tooltip-append-to-body="true") VP
span.pull-right {{currencyDataManager.currency.vp | number:0}}

.col-md-4(fill-height, offset="390")
Expand All @@ -31,4 +31,4 @@ script(type="text/ng-template", id="upgrade-block")
.col-xs-6
span {{upgrade.cost | number:0}} {{upgrade.currency | uppercase}}
.col-xs-6
button.btn.btn-link.margin-0(ng-disabled="currencyDataManager.currency[upgrade.currency] < upgrade.cost", ng-click="buyUpgrade(upgrade)") Buy
button.btn.btn-link.margin-0(ng-disabled="currencyDataManager.currency[upgrade.currency] < upgrade.cost", ng-click="buyUpgrade(upgrade)") Buy

0 comments on commit 65b26b5

Please sign in to comment.