e8b7660376
* Add localization strings
* Change name of Equipment section
* Add costume section to member modal
* Add costume section to member modal
* Add current pet and current mount info
* Reorder Sections and Separate Active Mounts/Pets
* switch ng-show with ng-if
* Add `noActiveMount` to pets.json
* Breaking Stuff
* Add petservices.js to the manifest
* Remove Extra Parenthesis
* Progress towards backgrounds
* Add semicolons
* Add background information
* Add all methods in petServices to userCtrl and memberModalCtrl
* Add avatar settings
* Add semicolons
* Revert "Add avatar settings"
This reverts commit 6e8cca9736.
* Remove active-pet-and-mount
* Remove Content from memberModalCtrl
* Update costumeServices.js
* Make costumeservices.js more readable
* Update costumeServices.js
* Update costumeService logic
* Remove unused strings
* Fix include statements
* move service
* Update pet/mount logic
* fixes
* Fix background logic
9 lines
499 B
Plaintext
9 lines
499 B
Plaintext
h4.stats-equipment(ng-show='user.flags.itemsEnabled')=env.t('battleGear')
|
|
table.table.table-striped(ng-show='user.flags.itemsEnabled')
|
|
tr(ng-repeat='(itemType,gear) in profile.items.gear.equipped',
|
|
ng-init='piece=Content.gear.flat[gear]', ng-show='piece')
|
|
td
|
|
strong {{piece.text()}}
|
|
strong(ng-show='piece.str || piece.con || piece.per || piece.int') :
|
|
span(ng-repeat='stat in ["str","con","per","int"]', ng-show='piece[stat]') {{piece[stat]}} {{env.t(stat)}}
|