'use strict'; /*global NzbDrone, Backbone*/ /// /// /// NzbDrone.Series.Index.SeriesItemView = Backbone.Marionette.ItemView.extend({ template: 'Series/Index/SeriesItemTemplate', tagName: 'tr', events: { 'click .x-remove': 'removeSeries', }, onRender: function () { NzbDrone.ModelBinder.bind(this.model, this.el); }, removeSeries: function () { this.model.destroy({ wait: true }); this.model.collection.remove(this.model); }, }); NzbDrone.Series.Index.SeriesCollectionView = Backbone.Marionette.CompositeView.extend({ itemView: NzbDrone.Series.Index.SeriesItemView, template: 'Series/Index/SeriesCollectionTemplate', tagName: 'table', className: 'table table-hover', });