2013-06-21 23:24:24 -07:00
|
|
|
'use strict';
|
2013-06-24 16:41:59 -07:00
|
|
|
define(
|
|
|
|
[
|
|
|
|
'Cells/NzbDroneCell'
|
|
|
|
], function (NzbDroneCell) {
|
|
|
|
return NzbDroneCell.extend({
|
2013-06-09 22:37:41 -07:00
|
|
|
|
2013-06-24 16:41:59 -07:00
|
|
|
className: 'relative-date-cell',
|
2013-06-09 13:51:32 -07:00
|
|
|
|
2013-06-24 16:41:59 -07:00
|
|
|
render: function () {
|
2013-06-09 13:51:32 -07:00
|
|
|
|
2013-06-24 16:41:59 -07:00
|
|
|
var date = this.model.get(this.column.get('name'));
|
|
|
|
this.$el.html(Date.create(date).relative());
|
2013-06-09 13:51:32 -07:00
|
|
|
|
2013-06-24 16:41:59 -07:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
});
|
2013-06-09 13:51:32 -07:00
|
|
|
});
|