mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-22 11:38:24 +00:00
Merge pull request #1888 from HabitRPG/sabe_tweak
Fix matters of colons
This commit is contained in:
commit
33c2c1db2d
3 changed files with 8 additions and 8 deletions
|
|
@ -20,7 +20,7 @@
|
|||
.bar(style='width: {{percent(user.stats.exp,tnl(user.stats.lvl))}}%;')
|
||||
span.meter-text
|
||||
i.icon-star
|
||||
| {{user.stats.exp | number:0}} / {{tnl(user.stats.lvl)}}
|
||||
| {{user.stats.exp | number:0}} / {{tnl(user.stats.lvl) | number:0}}
|
||||
// FIXME doesn't look great here, but the "Experience" CSS title rollover covers it where it was before
|
||||
span(ng-show='user.history.exp')
|
||||
a(ng-click='toggleChart("exp")', tooltip='Progress')
|
||||
|
|
|
|||
|
|
@ -26,11 +26,11 @@ p
|
|||
| : {{profile.stats.exp | number:0}} / {{tnl(profile.stats.lvl)}}
|
||||
p
|
||||
strong Strength
|
||||
| :
|
||||
| :
|
||||
span(popover-trigger='mouseenter', popover='(Level-1)/2') {{userStr(profile.stats.lvl)}}
|
||||
p
|
||||
strong Defense
|
||||
| :
|
||||
| :
|
||||
span(popover-trigger='mouseenter', popover='(Level-1)/2') {{userDef(profile.stats.lvl)}}
|
||||
p
|
||||
strong Pets Found
|
||||
|
|
@ -38,10 +38,10 @@ p
|
|||
hr
|
||||
p
|
||||
strong Total Experience Boost
|
||||
| :
|
||||
| :
|
||||
span(popover-trigger='mouseenter', popover='Attack + Strength') {{totalStr(profile.stats.lvl, profile.items.weapon)}} %
|
||||
|
||||
p
|
||||
strong Total Damage Reduction
|
||||
| :
|
||||
| :
|
||||
span(popover-trigger='mouseenter', popover='Defense + Protection') {{totalDef(profile.stats.lvl, profile.items.armor, profile.items.head, profile.items.shield)}} %
|
||||
|
|
@ -140,9 +140,9 @@ li(bindonce='list', ng-repeat='task in obj[list.type+"s"]', class='task {{taskCl
|
|||
|
||||
fieldset.option-group(ng-if='!$state.includes("options.social.challenges")')
|
||||
legend.option-title Tags
|
||||
label.checkbox(ng-repeat='tag in user.tags')
|
||||
input(type='checkbox', ng-model='task.tags[tag.id]')
|
||||
| {{tag.name}}
|
||||
label.checkbox(ng-repeat='tag in user.tags')
|
||||
input(type='checkbox', ng-model='task.tags[tag.id]')
|
||||
| {{tag.name}}
|
||||
|
||||
// Advanced Options
|
||||
span(bo-if='task.type!="reward"')
|
||||
|
|
|
|||
Loading…
Reference in a new issue