Files
Readarr/src/UI/System/Task/TaskIntervalCell.js
2015-02-14 19:14:57 +01:00

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