You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Radarr/UI/Cells/SeriesStatusCell.js

26 lines
778 B

'use strict';
12 years ago
define(['app','cells/nzbdronecell'], function () {
return NzbDrone.Cells.NzbDroneCell.extend({
className: 'series-status-cell',
12 years ago
render: function () {
this.$el.empty();
var monitored = this.model.get('monitored');
var status = this.model.get('status');
12 years ago
if (!monitored) {
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
}
else if (status === 'continuing') {
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
}
else {
this.$el.html('<i class="icon-stop grid-icon" title="Ended"></i>');
}
12 years ago
return this;
12 years ago
}
});
});