mirror of
https://github.com/ansible/awx.git
synced 2026-01-29 07:14:43 -03:30
* Faster build times * Smaller bundle sizes * Adjust paths * Cleanup npm dependencies * Remove unneded Grunt tasks
17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
const templateUrl = require('@components/action/action-group.partial.html');
|
|
|
|
function atActionGroup () {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
transclude: true,
|
|
templateUrl,
|
|
scope: {
|
|
col: '@',
|
|
pos: '@'
|
|
}
|
|
};
|
|
}
|
|
|
|
export default atActionGroup;
|