21 lines
691 B
JavaScript
21 lines
691 B
JavaScript
'use strict';
|
|
|
|
angular.module('adagios.tactical', ['ngRoute',
|
|
'adagios.tactical.status_overview',
|
|
'adagios.tactical.current_health',
|
|
'adagios.tactical.top_alert_producers',
|
|
'adagios.table'
|
|
|
|
])
|
|
|
|
.config(['$routeProvider', function ($routeProvider) {
|
|
$routeProvider.when('/tactical', {
|
|
templateUrl: 'tactical/tactical.html',
|
|
controller: 'TacticalCtrl'
|
|
});
|
|
}])
|
|
|
|
.controller('TacticalCtrl', ['$scope', '$http', function ($scope, $http) {
|
|
return;
|
|
}]);
|