Series Table

This commit is contained in:
Mark McDowall
2013-04-23 17:30:25 -07:00
parent 0db39edb2c
commit 475c86dcab
8 changed files with 51 additions and 46 deletions

View File

@@ -0,0 +1,12 @@
Backgrid.AirDateCell = Backgrid.Cell.extend({
className: "air-date-cell",
render: function () {
this.$el.empty();
var airDate = this.model.get(this.column.get("name"));
this.$el.html(bestDateString(airDate));
return this;
}
});