bansho/app/components/table/cell_status_event_output/cell_status_event_output.js
Vincent Fournier 8b151b22a4 Add basic events
Change-Id: I48bc49cec77073f533fce9b2993df3b67bfe71f8
2015-07-06 17:08:38 -04:00

12 lines
340 B
JavaScript

'use strict';
angular.module('bansho.table.cell_status_event_output', ['bansho.table'])
.controller('CellStatusEventOutputCtrl', ['$scope', function ($scope) {
angular.noop();
}])
.run(['tableGlobalConfig', function (tableGlobalConfig) {
tableGlobalConfig.cellToFieldsMap.status_output = ['output'];
}]);