Lidarr/UI/Series/Index/Table/AirDateCell.js

12 lines
274 B
JavaScript
Raw Normal View History

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