mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-03 00:09:41 +00:00
fix a minor syntax error when opening reroll modal.
This commit is contained in:
parent
9fb671f068
commit
e269e04172
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ script(type='text/ng-template', id='modals/reroll.html')
|
||||||
.modal-footer
|
.modal-footer
|
||||||
button.btn.btn-default(ng-click='$close()')=env.t('neverMind')
|
button.btn.btn-default(ng-click='$close()')=env.t('neverMind')
|
||||||
span(ng-if='user.balance < 1')
|
span(ng-if='user.balance < 1')
|
||||||
a.btn.btn-success(ng-click='openModal("buyGems",{track:{"Gems > Reroll"}})')=env.t('buyMoreGems')
|
a.btn.btn-success(ng-click='openModal("buyGems",{track:"Gems > Reroll"})')=env.t('buyMoreGems')
|
||||||
span.gem-cost=env.t('notEnoughGems')
|
span.gem-cost=env.t('notEnoughGems')
|
||||||
span(ng-if='user.balance >= 1', ng-controller='SettingsCtrl')
|
span(ng-if='user.balance >= 1', ng-controller='SettingsCtrl')
|
||||||
a.btn.btn-danger(ng-click='$close(); reroll()')=env.t('fortify')
|
a.btn.btn-danger(ng-click='$close(); reroll()')=env.t('fortify')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue