habitica/public/js/services/sharedServices.js
2015-01-17 18:43:37 -07:00

13 lines
242 B
JavaScript

'use strict';
/**
* Services that expose habitrpg-shared
*/
angular.module('habitrpg')
.factory('Shared', [function () {
return window.habitrpgShared;
}])
.factory('Content', ['Shared', function (Shared) {
return Shared.content;
}]);