mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 06:43:24 +00:00
11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
angular.module('app').directive('componentDetails', [function () {
|
|
return {
|
|
restrict: 'E',
|
|
scope:{
|
|
c: '=',
|
|
lbl: '=',
|
|
opts: '='
|
|
},
|
|
templateUrl: 'views/component.html'
|
|
};
|
|
}]); |