12 lines
292 B
JavaScript
12 lines
292 B
JavaScript
'use strict';
|
|
|
|
angular.module('adagios.table.cell_last_check', ['adagios.table'])
|
|
|
|
.controller('CellLastCheckCtrl', [function () {
|
|
angular.noop();
|
|
}])
|
|
|
|
.run(['tableConfig', function (tableConfig) {
|
|
tableConfig.cellToFieldsMap.last_check = ['last_check'];
|
|
}]);
|