Files
coriolis/app/js/directives/directive-component-details.js
Colin McLeod 1097ca5a42 Initial commit
2015-04-16 18:29:29 -07:00

11 lines
210 B
JavaScript

angular.module('app').directive('componentDetails', [function () {
return {
restrict: 'E',
scope:{
c: '=',
lbl: '=',
opts: '='
},
templateUrl: 'views/component.html'
};
}]);