1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-10 04:52:42 +01:00
Radarr/UI/Series/Index/Table/SeriesStatusCell.js
kay.one 769331d45d updated jshint to 2.1.3
single quotes
2013-06-21 23:24:24 -07:00

28 lines
814 B
JavaScript

'use strict';
define(['app','backgrid'], function () {
Backgrid.SeriesStatusCell = Backgrid.Cell.extend({
className: 'series-status-cell',
render: function () {
this.$el.empty();
var monitored = this.model.get('monitored');
var status = this.model.get('status');
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>');
}
return this;
}
});
return Backgrid.SeriesStatusCell;
});