Files
coriolis/app/js/directives/directive-slot-details.js
2015-04-16 19:44:39 -07:00

11 lines
198 B
JavaScript

angular.module('app').directive('slotDetails', function () {
return {
restrict: 'A',
scope:{
c: '=',
lbl: '=',
opts: '='
},
templateUrl: 'views/slot.html'
};
});