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

19 lines
396 B
JavaScript

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