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

27 lines
655 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('<div>' + FormatHelpers.DateHelper(date) + '</div>');
this.$el.children('div').attr('title', Moment(date).format('LLLL'));
}
return this;
}
});
});