Files
awx/awx/ui/client/components/panel/heading.directive.js
2017-06-12 09:53:11 -04:00

21 lines
425 B
JavaScript

function link (scope, el, attrs, panel) {
panel.use(scope);
}
function atPanelHeading (pathService) {
return {
restrict: 'E',
require: '^^atPanel',
transclude: true,
templateUrl: pathService.getPartialPath('components/panel/heading'),
link,
scope: {
config: '='
}
};
}
atPanelHeading.$inject = ['PathService'];
export default atPanelHeading;