1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Cells/AirDateCell.js

27 lines
655 B
JavaScript
Raw Normal View History

2013-06-22 09:24:24 +03:00
'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) {
2013-07-18 03:28:33 +03:00
this.$el.html('<div>' + FormatHelpers.DateHelper(date) + '</div>');
2013-07-18 03:28:33 +03:00
this.$el.children('div').attr('title', Moment(date).format('LLLL'));
}
return this;
}
});
});