5d87fdaacd
Change-Id: If4837f71caca6d594e141fff830c7c2c08376e03
15 lines
397 B
JavaScript
15 lines
397 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/custom_directive/tactical/status_overview/status_overview.html'
|
|
};
|
|
});
|