mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-26 09:51:48 -05:00
13 lines
273 B
JavaScript
13 lines
273 B
JavaScript
function atPanelBody (pathService) {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
transclude: true,
|
|
templateUrl: pathService.getPartialPath('components/panel/body')
|
|
};
|
|
}
|
|
|
|
atPanelBody.$inject = ['PathService'];
|
|
|
|
export default atPanelBody;
|