mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-20 07:43:35 -05:00
19 lines
396 B
JavaScript
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;
|