mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 14:45:35 +00:00
14 lines
278 B
JavaScript
14 lines
278 B
JavaScript
angular.module('app').directive('hardpoint', ['$rootScope', function ($r) {
|
|
return {
|
|
restrict: 'A',
|
|
scope:{
|
|
hp: '=',
|
|
size: '=',
|
|
opts: '='
|
|
},
|
|
templateUrl: 'views/hardpoint.html',
|
|
link: function (scope) {
|
|
scope.$r = $r;
|
|
}
|
|
};
|
|
}]); |