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