Added event type icon to history grid.

This commit is contained in:
Keivan Beigi 2013-06-10 18:55:05 -07:00
commit 76fb548ccd
9 changed files with 87 additions and 8 deletions

View file

@ -22,18 +22,18 @@ define(['app'], function () {
var name = this.column.get('name');
if(name === 'this'){
if (name === 'this') {
return this.model;
}
var value = this.model.get(name);
if(!value){
if (!value) {
return undefined;
}
//if not a model
if (!value.get) {
if (!value.get && typeof value === 'object') {
value = new Backbone.Model(value);
}

View file

@ -17,3 +17,7 @@
.quality-cell{
width: 130px;
}
.history-event-type-cell{
width : 10px;
}