Files
awx/awx/ui/client/components/action/action-group.directive.js
2017-06-12 09:53:11 -04:00

17 lines
359 B
JavaScript

function atActionGroup (pathService) {
return {
restrict: 'E',
transclude: true,
replace: true,
templateUrl: pathService.getPartialPath('components/action/action-group'),
scope: {
col: '@',
pos: '@'
}
};
}
atActionGroup.$inject = ['PathService'];
export default atActionGroup;