mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-27 01:57:21 +00:00
13 lines
306 B
JavaScript
13 lines
306 B
JavaScript
"use strict";
|
|
define(['app'], function () {
|
|
NzbDrone.Cells.RelativeDateCell = Backgrid.Cell.extend({
|
|
|
|
render: function () {
|
|
|
|
var date = this.model.get(this.column.get('name'));
|
|
this.$el.html(Date.create(date).relative());
|
|
|
|
return this;
|
|
}
|
|
});
|
|
});
|