Helper cleanup

This commit is contained in:
Mark McDowall 2013-06-06 19:39:12 -07:00
commit 626d48c8ea
16 changed files with 89 additions and 83 deletions

View file

@ -6,7 +6,7 @@ Backgrid.AirDateCell = Backgrid.Cell.extend({
this.$el.empty();
var airDate = this.model.get(this.column.get("name"));
this.$el.html(bestDateString(airDate));
this.$el.html(NzbDrone.Shared.FormatHelpers.DateHelper(airDate));
return this;
}