Ubuntu Pastebin

Paste from 1 at Tue, 7 Nov 2017 13:30:55 +0000

Download as text
 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
        };
});
Download as text