(function () { 'use strict'; var mod = angular.module('licencingAdmin', [ 'common.bootstrap', 'ui.bootstrap', 'ui.bootstrap.modal', 'myusers', 'OrganisationAdmin', 'payments' ]); var templatePath = modulesSharedResourcesUrl + 'Modules/LicencingAdmin/Views/'; var config = { licencingRemoteServiceUrl: licencingRemoteServiceUrl, modulesSharedResourcesUrl: modulesSharedResourcesUrl, organisationTypeId: organisationTypeId, applicationId: applicationId, userLimitFeatureId:userLimitFeatureId, templatePath:templatePath }; mod.value('licencingAdminConfig', config); mod.config(['$logProvider', function ($logProvider) { // turn debugging off/on (no info or warn) if ($logProvider.debugEnabled) $logProvider.debugEnabled(true); }]); mod.config(['$locationProvider', function ($locationProvider) { $locationProvider.html5Mode(false); $locationProvider.hashPrefix("!"); }]); //#endregion })();