mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
207d9c256d
Relative dates for next airing on posters and list (series) History time shows real time on tooltip
28 lines
700 B
JavaScript
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;
|
|
|
|
}
|
|
});
|
|
});
|