-
Notifications
You must be signed in to change notification settings - Fork 78
/
app.module.js
43 lines (39 loc) · 1.39 KB
/
app.module.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
(function() {
'use strict';
var guiapp = angular.module('guiapp',
[
'ngRoute',
'guiapp.filters',
'guiapp.directives',
'ui.bootstrap',
'elasticsearch',
'gridshore.c3js.chart',
'guiapp.services',
'guiapp.dashboard',
'guiapp.navbar',
'guiapp.search',
'guiapp.aggregatedialog',
'guiapp.snapshot',
'guiapp.nodeinfo',
'guiapp.graph',
'guiapp.inspect',
'guiapp.monitoring',
'guiapp.notification',
'guiapp.suggestion',
'guiapp.whereshards',
'guiapp.query'
]);
guiapp.config(['$routeProvider', function ($routeProvider) {
$routeProvider.when('/about', {templateUrl: 'partials/about.html'});
$routeProvider.otherwise({redirectTo: '/dashboard'});
}]);
guiapp.value('localStorage', window.localStorage);
//guiapp.factory('$exceptionHandler',['$injector', function($injector) {
// return function(exception, cause) {
// console.log(exception);
// var errorHandling = $injector.get('errorHandling');
// errorHandling.add(exception.message);
// throw exception;
// };
//}]);
})();