mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-27 05:29:59 +00:00
8 lines
230 B
JavaScript
8 lines
230 B
JavaScript
|
|
habitrpg.controller("InventoryCtrl", ['$scope', 'User',
|
||
|
|
function($scope, User) {
|
||
|
|
|
||
|
|
$scope.hatching = false;
|
||
|
|
$scope.userEggs = User.user.items.eggs;
|
||
|
|
$scope.userHatchingPotions = User.user.items.hatchingPotions;
|
||
|
|
|
||
|
|
}]);
|