mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
11 lines
198 B
JavaScript
11 lines
198 B
JavaScript
angular.module('app').directive('slotDetails', function () {
|
|
return {
|
|
restrict: 'A',
|
|
scope:{
|
|
c: '=',
|
|
lbl: '=',
|
|
opts: '='
|
|
},
|
|
templateUrl: 'views/slot.html'
|
|
};
|
|
}); |