habitica-self-host/public/js/controllers/statsCtrl.js

15 lines
346 B
JavaScript
Raw Normal View History

2013-08-25 01:06:37 +00:00
'use strict';
habitrpg.controller('StatsCtrl',
['$scope', 'User',
function($scope, User) {
$scope.refreshing = function () {
User.settings.fetching ? "spin" : ""
2013-08-25 01:06:37 +00:00
};
$scope.queueLength = function () {
User.settings.sync.queue.length || User.settings.sync.sent.length
2013-08-25 01:06:37 +00:00
};
$scope.stats = User.user.stats;
}
]);