Files
coriolis/app/js/directives/directive-slot-hardpoint.js
2015-05-04 18:31:34 -07:00

14 lines
288 B
JavaScript

angular.module('app').directive('slotHardpoint', ['$rootScope', function ($r) {
return {
restrict: 'A',
scope:{
hp: '=',
size: '=',
lbl: '=',
},
templateUrl: 'views/_slot-hardpoint.html',
link: function (scope) {
scope.$r = $r;
}
};
}]);