mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-07 16:41:48 -05:00
20 lines
730 B
JavaScript
20 lines
730 B
JavaScript
/* jshint unused: vars */
|
|
|
|
export default
|
|
[ function() {
|
|
return { restrict: 'E',
|
|
templateUrl: '/static/js/system-tracking/fact-data-table/fact-data-table.partial.html',
|
|
scope:
|
|
{ leftHostname: '=',
|
|
rightHostname: '=',
|
|
leftScanDate: '=',
|
|
rightScanDate: '=',
|
|
leftDataNoScans: '=',
|
|
rightDataNoScans: '=',
|
|
isNestedDisplay: '=',
|
|
factData: '='
|
|
}
|
|
};
|
|
}
|
|
];
|