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