2015-03-25 11:24:58 -04:00

12 lines
312 B
JavaScript

'use strict';
angular.module('adagios.table.cell_duration', ['adagios.table'])
.controller('CellDurationCtrl', [function () {
angular.noop();
}])
.run(['tableGlobalConfig', function (tableGlobalConfig) {
tableGlobalConfig.cellToFieldsMap.duration = ['last_state_change'];
}]);