app.factory('config',function($http) { return { is_development_enviroment:false, getConfig: function() { return { apiUrl: 'https://akron.decoform.se', gridx: 5, gridy: 5 } }, getDefaultImageResolution: function() { return {width: 800.0, height: 600.0}; }, getMaxNumberOnField: function(){ return 99999999; }, getDefaultPhoneType: function() { return 'mobile'; }, getNegativeMinNumberOfField: function() { return -99999999; }, getCurrency: function() { return 'kr'; }, getCurrencySymbol: function() { return 'SEK'; }, getDefaultProbability: function() { return '50%'; }, getDefaultSource: function() { return 'app'; }, getDefaultEvent: function() { return 'meeting'; }, getUnit: function() { return 'mm'; }, getTaxRate: function() { return 0.25; }, getVersion: function() { return '2.2.4.6'; }, getROTRate: function() { return 0.3; }, getUpgradeQuotationVersion: function() { return 2020000; }, getSveaInterestRate: function() { return 0.0895; } } });