mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 07:07:35 +01:00
14 lines
242 B
JavaScript
14 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;
|
|
}]);
|