mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-18 05:51:47 -05:00
17 lines
310 B
JavaScript
17 lines
310 B
JavaScript
const templateUrl = require('~components/list/row.partial.html');
|
|
|
|
function atRow () {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
transclude: true,
|
|
templateUrl,
|
|
scope: {
|
|
invalid: '=',
|
|
invalidTooltip: '='
|
|
}
|
|
};
|
|
}
|
|
|
|
export default atRow;
|