mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 11:02:40 +01:00
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
|
'use strict';
|
|||
|
|
|||
|
define([
|
|||
|
'app',
|
|||
|
'Quality/QualityProfileCollection'
|
|||
|
|
|||
|
], function () {
|
|||
|
|
|||
|
NzbDrone.Settings.QualityProfileView = Backbone.Marionette.ItemView.extend({
|
|||
|
template: 'Settings/Quality/QualityProfileTemplate',
|
|||
|
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.Edit.EditSeriesView({ model: this.model});
|
|||
|
|
|||
|
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
|
|||
|
view: view
|
|||
|
});
|
|||
|
},
|
|||
|
|
|||
|
removeSeries: function () {
|
|||
|
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
|
|||
|
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
|
|||
|
view: view
|
|||
|
});
|
|||
|
}
|
|||
|
});
|
|||
|
});
|