mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-27 23:06:29 -04:00
16 lines
648 B
JavaScript
16 lines
648 B
JavaScript
var NzbDroneCell = require('../../Cells/NzbDroneCell');
|
|
var SeriesCollection = require('../SeriesCollection');
|
|
|
|
module.exports = NzbDroneCell.extend({
|
|
className : 'episode-warning-cell',
|
|
render : function(){
|
|
this.$el.empty();
|
|
if(SeriesCollection.get(this.model.get('seriesId')).get('seriesType') === 'anime') {
|
|
if(this.model.get('seasonNumber') > 0 && !this.model.has('absoluteEpisodeNumber')) {
|
|
this.$el.html('<i class="icon-nd-form-warning" title="Episode does not have an absolute episode number"></i>');
|
|
}
|
|
}
|
|
this.delegateEvents();
|
|
return this;
|
|
}
|
|
}); |