You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
define([
|
|
|
|
|
'app',
|
|
|
|
|
'Quality/QualityProfileCollection',
|
|
|
|
|
'Settings/Quality/Profile/EditQualityProfileView'
|
|
|
|
|
|
|
|
|
|
], function () {
|
|
|
|
|
|
|
|
|
|
NzbDrone.Settings.Quality.Profile.QualityProfileView = Backbone.Marionette.ItemView.extend({
|
|
|
|
|
template: 'Settings/Quality/Profile/QualityProfileTemplate',
|
|
|
|
|
tagName : 'tr',
|
|
|
|
|
|
|
|
|
|
ui: {
|
|
|
|
|
'progressbar': '.progress .bar'
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
events: {
|
|
|
|
|
'click .x-edit' : 'edit',
|
|
|
|
|
'click .x-remove': 'removeQuality'
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
edit: function () {
|
|
|
|
|
var view = new NzbDrone.Settings.Quality.Profile.EditQualityProfileView({ model: this.model});
|
|
|
|
|
NzbDrone.modalRegion.show(view);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
removeQuality: function () {
|
|
|
|
|
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
|
|
|
|
|
NzbDrone.modalRegion.show(view);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|