mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-31 23:11:15 +00:00
16 lines
282 B
JavaScript
16 lines
282 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Services that expose habitrpg-shared
|
||
|
|
*/
|
||
|
|
|
||
|
|
angular.module('sharedServices', []).
|
||
|
|
factory('Shared', [function () {
|
||
|
|
return window.habitrpgShared;
|
||
|
|
}
|
||
|
|
]).
|
||
|
|
factory('Content', ['Shared', function (Shared) {
|
||
|
|
return Shared.content;
|
||
|
|
}
|
||
|
|
]);
|