Files
habitica/public/js/controllers/userAvatarCtrl.js
T
2013-09-08 11:39:30 -04:00

13 lines
333 B
JavaScript

"use strict";
habitrpg.controller("UserAvatarCtrl", ['$scope', '$location', 'User',
function($scope, $location, User) {
$scope.profile = User.user;
$scope.hideUserAvatar = function() {
$(".userAvatar").hide();
};
$scope.toggleHelm = function(val){
User.log({op:'set', data:{'preferences.showHelm':val}});
}
}]);