drupal-civicrm/sites/all/modules/civicrm/ang/crmApp.js
2018-01-14 13:10:16 +00:00

24 lines
681 B
JavaScript

(function(angular, CRM) {
// crmApp is the default application which aggregates all known modules.
// crmApp should not provide any significant services, and no other
// modules should depend on it.
var crmApp = angular.module('crmApp', CRM.angular.modules);
crmApp.config(['$routeProvider',
function($routeProvider) {
if (CRM.crmApp.defaultRoute) {
$routeProvider.when('/', {
template: '<div></div>',
controller: function($location) {
$location.path(CRM.crmApp.defaultRoute);
}
});
}
$routeProvider.otherwise({
template: ts('Unknown path')
});
}
]);
})(angular, CRM);