15 lines
380 B
JavaScript
15 lines
380 B
JavaScript
'use strict';
|
|
|
|
angular.module('bansho.tactical.status_overview', [])
|
|
|
|
.controller('TacticalStatusOverViewCtrl', ['$scope', function ($scope) {
|
|
angular.noop();
|
|
}])
|
|
|
|
.directive('banshoStatusOverview', function () {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'components/tactical/status_overview/status_overview.html'
|
|
};
|
|
});
|