mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
34 lines
915 B
JavaScript
34 lines
915 B
JavaScript
'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);
|
|
}
|
|
});
|
|
});
|