Files
awx/awx/ui/client/lib/components/panel/body.directive.js
2017-06-12 09:53:11 -04:00

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;