Merge pull request #6600 from colemanw/CRM-17038
[civicrm-core.git] / ang / crmApp.js
CommitLineData
416abe87 1(function(angular, CRM) {
a8e65974
TO
2 // crmApp is the default application which aggregates all known modules.
3 // crmApp should not provide any significant services, and no other
4 // modules should depend on it.
416abe87
PH
5 var crmApp = angular.module('crmApp', CRM.angular.modules);
6 crmApp.config(['$routeProvider',
7 function($routeProvider) {
8 $routeProvider.otherwise({
9 template: ts('Unknown path')
10 });
11 }
12 ]);
416abe87 13})(angular, CRM);