mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
c01f982698
datatables doesn't load properly.
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
define([
|
|
'app',
|
|
'Quality/QualityProfileCollection',
|
|
'Series/SeriesCollection',
|
|
'Series/Edit/EditSeriesView',
|
|
'Series/Delete/DeleteSeriesView'
|
|
|
|
], function (app, qualityProfileCollection) {
|
|
|
|
NzbDrone.Series.SeriesItemView = Backbone.Marionette.ItemView.extend({
|
|
template: 'Series/SeriesItemTemplate',
|
|
tagName: 'tr',
|
|
|
|
ui: {
|
|
'progressbar': '.progress .bar',
|
|
},
|
|
|
|
events: {
|
|
'click .x-edit': 'editSeries',
|
|
'click .x-remove': 'removeSeries'
|
|
},
|
|
|
|
initialize: function (options) {
|
|
this.qualityProfileCollection = options.qualityProfiles;
|
|
},
|
|
|
|
onRender: function () {
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
},
|
|
|
|
|
|
editSeries: function () {
|
|
var view = new NzbDrone.Series.EditSeriesView({ model: this.model});
|
|
view.on('saved', this.render, this);
|
|
NzbDrone.modalRegion.show(view);
|
|
},
|
|
|
|
removeSeries: function () {
|
|
var view = new NzbDrone.Series.DeleteSeriesView({ model: this.model });
|
|
NzbDrone.modalRegion.show(view);
|
|
},
|
|
onSave: function () {
|
|
alert("saved!");
|
|
}
|
|
});
|
|
});
|