(function () { "use strict"; var mod = angular.module("organisationManager", [ "common.bootstrap", "ui.bootstrap", "ui.bootstrap.modal", ]); var templatePath = modulesSharedResourcesUrl + "Modules/OrganisationManager/Views/"; var config = { templatePath: templatePath, myusersUrl: myusersUrl, jobRoleTypeId: jobRoleTypeId, teamTypeId: teamTypeId, }; mod.value("organisationManagerConfig", 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(true); $locationProvider.hashPrefix("!"); }, ]); //#endregion })();