mirror of https://github.com/Sonarr/Sonarr
30 lines
785 B
JavaScript
30 lines
785 B
JavaScript
'use strict';
|
|
define(['app', 'Quality/QualityProfileModel'], function () {
|
|
|
|
NzbDrone.Settings.Quality.Profile.EditQualityProfileView = Backbone.Marionette.ItemView.extend({
|
|
template : 'Settings/Quality/Profile/EditQualityProfileTemplate',
|
|
tagName : 'div',
|
|
className: "modal",
|
|
|
|
ui: {
|
|
switch: '.switch'
|
|
},
|
|
|
|
events: {
|
|
'click .x-save': 'saveQualityProfile'
|
|
},
|
|
|
|
onRender: function () {
|
|
this.ui.switch.bootstrapSwitch();
|
|
},
|
|
|
|
saveQualityProfile: function () {
|
|
//Todo: Make sure model is updated with Allowed, Cutoff, Name
|
|
|
|
this.model.save();
|
|
this.trigger('saved');
|
|
this.$el.parent().modal('hide');
|
|
}
|
|
});
|
|
|
|
}); |