bansho/app/components/directive/table/cell_status_host_address/cell_status_host_address.js

12 lines
331 B
JavaScript

'use strict';
angular.module('bansho.table.cell_status_host_address', ['bansho.table'])
.controller('CellStatusHostAddressCtrl', [function () {
angular.noop();
}])
.run(['tableGlobalConfig', function (tableGlobalConfig) {
tableGlobalConfig.cellToFieldsMap.status_host_address = ['address'];
}]);