mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01:00
work. Can now click guild & tavern members! does lazy-loading of members so we don't have to load all their information at once
10 lines
231 B
JavaScript
10 lines
231 B
JavaScript
"use strict";
|
|
|
|
habitrpg.controller("UserAvatarCtrl", ['$scope', '$location', 'User',
|
|
function($scope, $location, User) {
|
|
$scope.profile = User.user;
|
|
$scope.hideUserAvatar = function() {
|
|
$(".userAvatar").hide();
|
|
};
|
|
}]);
|