2013-05-01 22:42:30 +00:00
|
|
|
"use strict";
|
2013-04-24 00:30:25 +00:00
|
|
|
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;
|
|
|
|
}
|
2013-05-01 22:42:30 +00:00
|
|
|
});
|