Vincent Fournier 844d9e0e6e Clean config.js and remove container
Change-Id: Ieeb6980232c02ec72a6a0caa707dddbacb008a6f
2015-08-26 16:45:55 -04:00

18 lines
710 B
JavaScript

'use strict';
angular.module('bansho.tactical.current_health', ['bansho.surveil',
'ngJustGage'])
.directive('banshoCurrentHealth', ['$compile', '$rootScope', function ($compile, $rootScope) {
return {
restrict: 'E',
templateUrl: 'components/custom_directive/tactical/current_health/current_health.html',
controller: ['$scope', '$element', function (scope, element) {
$rootScope.$watch('themeClassSize', function(sizeclass) {
scope.themeClassSize = sizeclass;
//$compile(element.contents())(scope);
});
}]
};
}]);