'use strict'; define( [ 'backgrid' ], function (Backgrid) { return 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 (status === 'ended') { this.$el.html(''); this.model.set('statusWeight', 3); } else if (!monitored) { this.$el.html(''); this.model.set('statusWeight', 2); } else { this.$el.html(''); this.model.set('statusWeight', 1); } return this; } }); });