mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-14 12:01:50 -05:00
19 lines
358 B
JavaScript
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;
|