24f73d6e66
Change-Id: I83a190958149d15f273ee94217cc92cc0ef5db67
12 lines
330 B
JavaScript
12 lines
330 B
JavaScript
'use strict';
|
|
|
|
angular.module('bansho.table.cell_status_duration', ['bansho.table'])
|
|
|
|
.controller('CellStatusDurationCtrl', [function () {
|
|
angular.noop();
|
|
}])
|
|
|
|
.run(['tableGlobalConfig', function (tableGlobalConfig) {
|
|
tableGlobalConfig.cellToFieldsMap.status_duration = ['last_state_change'];
|
|
}]);
|