bansho/app/components/table/cell_host_address/cell_host_address.js

12 lines
300 B
JavaScript

'use strict';
angular.module('adagios.table.cell_host_address', ['adagios.table'])
.controller('CellHostAddressCtrl', [function () {
angular.noop();
}])
.run(['tableConfig', function (tableConfig) {
tableConfig.cellToFieldsMap.host_address = ['host_address'];
}]);