2018-02-01 12:27:52 +00:00
|
|
|
angular.module('portainer.docker').component('tasksDatatable', {
|
|
|
|
templateUrl: 'app/docker/components/datatables/tasks-datatable/tasksDatatable.html',
|
2017-12-06 11:04:02 +00:00
|
|
|
controller: 'GenericDatatableController',
|
|
|
|
bindings: {
|
2018-06-06 16:12:35 +00:00
|
|
|
titleText: '@',
|
2017-12-06 11:04:02 +00:00
|
|
|
titleIcon: '@',
|
|
|
|
dataset: '<',
|
|
|
|
tableKey: '@',
|
|
|
|
orderBy: '@',
|
|
|
|
reverseOrder: '<',
|
|
|
|
nodes: '<',
|
2018-02-28 06:19:28 +00:00
|
|
|
showSlotColumn: '<',
|
2018-05-06 07:15:57 +00:00
|
|
|
showLogsButton: '<',
|
|
|
|
agentProxy: '<'
|
2017-12-06 11:04:02 +00:00
|
|
|
}
|
|
|
|
});
|