1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Cells/AirDateCell.js
Mark McDowall 207d9c256d sugar kills (removed sugar.js)
Relative dates for next airing on posters and list (series)
History time shows real time on tooltip
2013-07-16 23:23:44 -07:00

28 lines
700 B
JavaScript

'use strict';
define(
[
'backgrid',
'moment',
'Shared/FormatHelpers'
], function (Backgrid, Moment, FormatHelpers) {
return Backgrid.Cell.extend({
className: 'air-date-cell',
render: function () {
this.$el.empty();
var date = this.model.get(this.column.get('name'));
if (date) {
this.$el.html(FormatHelpers.DateHelper(date));
//TODO: Figure out why this makes the series grid freak out
//this.$el.attr('title', Moment(date).format('LLLL'));
}
return this;
}
});
});