|
9 | 9 |
|
10 | 10 |
|
11 | 11 | var app = angular.module('Oshinko', [
|
12 |
| - 'ngRoute', |
13 |
| - 'Oshinko.controllers', |
14 |
| - 'Oshinko.factories' |
| 12 | + 'ngRoute', |
| 13 | + 'Oshinko.controllers', |
| 14 | + 'Oshinko.factories' |
15 | 15 | ]);
|
16 | 16 |
|
17 | 17 | app.config(['$routeProvider', function ($routeProvider) {
|
18 |
| - $routeProvider.when('/clusters/:Id?', |
19 |
| - { |
20 |
| - templateUrl: function(params) { |
21 |
| - if(!params['Id']) |
22 |
| - return 'partials/clusters.html'; |
23 |
| - else |
24 |
| - return 'partials/cluster-detail.html'; |
25 |
| - }, |
26 |
| - controller: 'ClusterCtrl', |
27 |
| - activetab: 'clusters' |
28 |
| - }); |
29 |
| - $routeProvider.when('/login', |
30 |
| - { |
31 |
| - templateUrl: 'partials/login.html', |
32 |
| - controller: 'LoginController', |
33 |
| - activetab: '' |
34 |
| - }); |
35 |
| - $routeProvider.otherwise({redirectTo: '/clusters'}); |
| 18 | + $routeProvider.when('/clusters/:Id?', |
| 19 | + { |
| 20 | + templateUrl: function (params) { |
| 21 | + if (!params.Id) { |
| 22 | + return 'partials/clusters.html'; |
| 23 | + } |
| 24 | + else { |
| 25 | + return 'partials/cluster-detail.html'; |
| 26 | + } |
| 27 | + }, |
| 28 | + controller: 'ClusterCtrl', |
| 29 | + activetab: 'clusters' |
| 30 | + }); |
| 31 | + $routeProvider.when('/login', |
| 32 | + { |
| 33 | + templateUrl: 'partials/login.html', |
| 34 | + controller: 'LoginController', |
| 35 | + activetab: '' |
| 36 | + }); |
| 37 | + $routeProvider.otherwise({redirectTo: '/clusters'}); |
36 | 38 | }]);
|
37 | 39 |
|
38 | 40 | app.run(function ($http) {
|
39 | 41 | window.__env = {};
|
40 | 42 | $http.get('/config/refresh').success(function (result) {
|
41 | 43 | window.__env.refresh_interval = result;
|
42 |
| - }).error(function(error) { |
43 |
| - console.log("Unable to fetch refresh interval, using default of 5"); |
| 44 | + }).error(function (error) { |
| 45 | + console.log("Unable to fetch refresh interval, using default of 5. " + error); |
44 | 46 | window.__env.refresh_interval = 5;
|
45 | 47 | });
|
46 | 48 | });
|
0 commit comments