2018-02-01 13:27:52 +01:00
|
|
|
angular.module('portainer.docker').component('imagesDatatable', {
|
|
|
|
templateUrl: 'app/docker/components/datatables/images-datatable/imagesDatatable.html',
|
2017-12-06 12:04:02 +01:00
|
|
|
controller: 'ImagesDatatableController',
|
|
|
|
bindings: {
|
2018-06-06 18:12:35 +02:00
|
|
|
titleText: '@',
|
2017-12-06 12:04:02 +01:00
|
|
|
titleIcon: '@',
|
|
|
|
dataset: '<',
|
|
|
|
tableKey: '@',
|
|
|
|
orderBy: '@',
|
|
|
|
reverseOrder: '<',
|
2018-05-06 09:15:57 +02:00
|
|
|
showHostColumn: '<',
|
2017-12-06 12:04:02 +01:00
|
|
|
removeAction: '<',
|
2018-07-26 15:09:48 +02:00
|
|
|
downloadAction: '<',
|
|
|
|
forceRemoveAction: '<',
|
|
|
|
exportInProgress: '<'
|
2017-12-06 12:04:02 +01:00
|
|
|
}
|
|
|
|
});
|