2013-09-04 15:13:42 +00:00
|
|
|
.row-fluid(ng-controller='InventoryCtrl')
|
|
|
|
|
div(ng-class='{span6: hatching}')
|
2013-09-02 18:26:59 +00:00
|
|
|
menu.inventory-list(type='list')
|
|
|
|
|
li.customize-menu
|
|
|
|
|
menu.pets-menu(label='Eggs')
|
2013-09-04 15:13:42 +00:00
|
|
|
p(ng-show='userEggs.length < 1') You don't have any eggs yet.
|
|
|
|
|
div(ng-repeat='egg in userEggs track by $index')
|
|
|
|
|
button.customize-option(tooltip='{{egg.text}}', ng-click='chooseEgg(egg)', class='Pet_Egg_{{egg.name}}')
|
2013-09-02 18:26:59 +00:00
|
|
|
p {{egg.text}}
|
|
|
|
|
li.customize-menu
|
|
|
|
|
menu.hatchingPotion-menu(label='Hatching Potions')
|
2013-09-04 15:13:42 +00:00
|
|
|
p(ng-show='userHatchingPotions.length < 1') You don't have any hatching potions yet.
|
|
|
|
|
div(ng-repeat='hatchingPotion in userHatchingPotions track by $index')
|
2013-09-04 17:06:31 +00:00
|
|
|
button.customize-option(tooltip='{{hatchingPotion}}', class='Pet_HatchingPotion_{{hatchingPotion}}')
|
2013-09-02 18:26:59 +00:00
|
|
|
p {{hatchingPotion}}
|
2013-09-04 15:13:42 +00:00
|
|
|
.span6(ng-show='hatching')
|
2013-09-02 18:26:59 +00:00
|
|
|
h3 Hatch Your Egg
|
2013-09-04 15:13:42 +00:00
|
|
|
p(ng-show='userHatchingPotions.length < 1') You don't have any hatching potions yet.
|
2013-09-15 19:40:20 +00:00
|
|
|
div(ng-show='userHatchingPotions.length >= 1')
|
2013-09-09 02:42:59 +00:00
|
|
|
p.
|
|
|
|
|
Which hatching potion will you pour on your <b>{{selectedEgg.text}}</b> egg?
|
|
|
|
|
select(ng-options='hatchingPotion for hatchingPotion in userHatchingPotions', ng-model="selectedPotion")
|
|
|
|
|
button(ng-click="pour()") Pour
|