mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-04 07:01:49 -05:00
21 lines
425 B
JavaScript
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;
|