mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
14 lines
288 B
JavaScript
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;
|
|
}
|
|
};
|
|
}]); |