mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-11 19:23:59 +00:00
21 lines
534 B
JavaScript
21 lines
534 B
JavaScript
var NzbDroneCell = require('../../Cells/NzbDroneCell');
|
|
var moment = require('moment');
|
|
|
|
module.exports = NzbDroneCell.extend({
|
|
className : 'task-interval-cell',
|
|
|
|
render : function() {
|
|
this.$el.empty();
|
|
|
|
var interval = this.model.get('interval');
|
|
var duration = moment.duration(interval, 'minutes').humanize().replace(/an?(?=\s)/, '1');
|
|
|
|
if (interval === 0) {
|
|
this.$el.html('disabled');
|
|
} else {
|
|
this.$el.html(duration);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
}); |