bansho/app/components/custom_directive/tactical/status_overview/status_overview.js
Vincent Fournier 5d87fdaacd Improve code naming
Change-Id: If4837f71caca6d594e141fff830c7c2c08376e03
2015-08-24 20:33:27 -04:00

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