mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 14:33:22 +00:00
15 lines
288 B
JavaScript
Executable File
15 lines
288 B
JavaScript
Executable File
angular.module('app').directive('slotInternal', ['$rootScope', function($r) {
|
|
return {
|
|
restrict: 'A',
|
|
scope: {
|
|
c: '=slot',
|
|
lbl: '=',
|
|
fuel: '='
|
|
},
|
|
templateUrl: 'views/_slot-internal.html',
|
|
link: function(scope) {
|
|
scope.$r = $r;
|
|
}
|
|
};
|
|
}]);
|