sonarr-repo-only/UI/Series/Index/Table/AirDateCell.js

14 lines
315 B
JavaScript
Raw Normal View History

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"));
2013-06-07 02:39:12 +00:00
this.$el.html(NzbDrone.Shared.FormatHelpers.DateHelper(airDate));
2013-04-24 00:30:25 +00:00
return this;
}
2013-05-01 22:42:30 +00:00
});