mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02: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
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
});
|