Files
awx/awx/ui/client/lib/components/panel/heading.directive.js
2017-09-19 14:53:23 -04:00

19 lines
358 B
JavaScript

const templateUrl = require('~components/panel/heading.partial.html');
function link (scope, el, attrs, panel) {
panel.use(scope);
}
function atPanelHeading () {
return {
restrict: 'E',
require: '^^atPanel',
replace: true,
transclude: true,
templateUrl,
link
};
}
export default atPanelHeading;