mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-31 23:11:15 +00:00
13 lines
242 B
JavaScript
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;
|
|
}]);
|