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

12 lines
312 B
JavaScript

'use strict';
angular.module('bansho.table.cell_status_event_time', ['bansho.table'])
.controller('CellStatusEventTime', [function () {
angular.noop();
}])
.run(['tableGlobalConfig', function (tableGlobalConfig) {
tableGlobalConfig.cellToFieldsMap.status_time = ['time'];
}]);