Files
coriolis/app/js/directives/directive-slot-internal.js
2015-05-26 20:18:20 -07:00

15 lines
287 B
JavaScript
Executable File

angular.module('app').directive('slotInternal', ['$rootScope', function ($r) {
return {
restrict: 'A',
scope:{
c: '=slot',
lbl: '=',
ft: '=',
},
templateUrl: 'views/_slot-internal.html',
link: function(scope) {
scope.$r = $r;
}
};
}]);