1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-27 10:19:41 +00:00
Radarr/UI/Cells/AirDateCell.js
2013-07-17 17:28:33 -07:00

26 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;
}
});
});