1
2
3
4
5
6
7
8
9
10
11
12 | 'use strict';
angular.module('pool.globals', [])
.factory('GLOBALS', function() {
return {
name: "name",
api_url : 'https://api.apiurl',
api_refresh_interval: 5000,
app_update_interval: 5*60000
};
});
|