Removed unnecessary comment

This commit is contained in:
Blade Barringer
2015-01-10 09:52:51 -06:00
parent 819ab0b6e1
commit 1e11947c9e

View File

@@ -4,7 +4,7 @@ habitrpg.controller("UserCtrl", ['$rootScope', '$scope', '$location', 'User', '$
function($rootScope, $scope, $location, User, $http, $state, Guide, Shared) {
$scope.profile = User.user;
$scope.profile.petCount = Shared.countPets(null, $scope.profile.items.pets);
$scope.profile.mountCount = Shared.countMounts(null, $scope.profile.items.mounts); //added for mountmaster prep
$scope.profile.mountCount = Shared.countMounts(null, $scope.profile.items.mounts);
$scope.hideUserAvatar = function() {
$(".userAvatar").hide();
};