2015-04-24 11:27:00 -04:00

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'
};
});