Files
coriolis/app/js/directives/directive-slot-hardpoint.js

14 lines
271 B
JavaScript
Executable File

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