Made uuid in hall of heroes populate the input box

This commit is contained in:
Blade Barringer
2015-04-09 21:57:06 -05:00
parent ddc91e0227
commit 24ef3aa012
3 changed files with 33 additions and 1 deletions

View File

@@ -17,6 +17,10 @@ habitrpg.controller("HallHeroesCtrl", ['$scope', '$rootScope', 'User', 'Notifica
})
}
$scope.heroes = Hero.query();
$scope.populateContributorInput = function(id) {
$scope._heroID = id;
};
}]);
habitrpg.controller("HallPatronsCtrl", ['$scope', '$rootScope', 'User', 'Notification', 'ApiUrl', '$resource',