mirror of https://github.com/portainer/portainer
17 lines
400 B
JavaScript
17 lines
400 B
JavaScript
angular.module('portainer.docker').component('containersDatatable', {
|
|
templateUrl: './containersDatatable.html',
|
|
controller: 'ContainersDatatableController',
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
dataset: '<',
|
|
tableKey: '@',
|
|
orderBy: '@',
|
|
reverseOrder: '<',
|
|
showHostColumn: '<',
|
|
showAddAction: '<',
|
|
offlineMode: '<',
|
|
refreshCallback: '<',
|
|
},
|
|
});
|