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

12 lines
331 B
JavaScript

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