bansho/app/components/table/cell_status_duration/cell_status_duration.js
aviau 24f73d6e66 Prefixed cell names with 'status' + removes useles css
Change-Id: I83a190958149d15f273ee94217cc92cc0ef5db67
2015-05-21 13:39:39 -04:00

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'];
}]);