habitica/assets/js/controllers/inventoryCtrl.js

8 lines
230 B
JavaScript
Raw Normal View History

2013-09-04 15:13:42 +00:00
habitrpg.controller("InventoryCtrl", ['$scope', 'User',
function($scope, User) {
$scope.hatching = false;
$scope.userEggs = User.user.items.eggs;
$scope.userHatchingPotions = User.user.items.hatchingPotions;
}]);