mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
renamed remove methods in QualityProfile, Notification
This commit is contained in:
@@ -13,7 +13,7 @@ define([
|
|||||||
|
|
||||||
events: {
|
events: {
|
||||||
'click .x-edit' : 'edit',
|
'click .x-edit' : 'edit',
|
||||||
'click .x-remove': 'remove'
|
'click .x-remove': 'removeNotification'
|
||||||
},
|
},
|
||||||
|
|
||||||
edit: function () {
|
edit: function () {
|
||||||
@@ -21,7 +21,7 @@ define([
|
|||||||
NzbDrone.modalRegion.show(view);
|
NzbDrone.modalRegion.show(view);
|
||||||
},
|
},
|
||||||
|
|
||||||
remove: function () {
|
removeNotification: function () {
|
||||||
var view = new NzbDrone.Settings.Notifications.DeleteView({ model: this.model});
|
var view = new NzbDrone.Settings.Notifications.DeleteView({ model: this.model});
|
||||||
NzbDrone.modalRegion.show(view);
|
NzbDrone.modalRegion.show(view);
|
||||||
}
|
}
|
||||||
|
@@ -17,7 +17,7 @@ define([
|
|||||||
|
|
||||||
events: {
|
events: {
|
||||||
'click .x-edit' : 'edit',
|
'click .x-edit' : 'edit',
|
||||||
'click .x-remove': 'remove'
|
'click .x-remove': 'removeQuality'
|
||||||
},
|
},
|
||||||
|
|
||||||
edit: function () {
|
edit: function () {
|
||||||
@@ -25,7 +25,7 @@ define([
|
|||||||
NzbDrone.modalRegion.show(view);
|
NzbDrone.modalRegion.show(view);
|
||||||
},
|
},
|
||||||
|
|
||||||
remove: function () {
|
removeQuality: function () {
|
||||||
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
|
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
|
||||||
NzbDrone.modalRegion.show(view);
|
NzbDrone.modalRegion.show(view);
|
||||||
}
|
}
|
||||||
|
@@ -1,31 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
define('modal', function () {
|
|
||||||
var modal = Backbone.Marionette.Region.extend({
|
|
||||||
el: "#modal-region",
|
|
||||||
|
|
||||||
constructor: function () {
|
|
||||||
_.bindAll(this);
|
|
||||||
Backbone.Marionette.Region.prototype.constructor.apply(this, arguments);
|
|
||||||
this.on("show", this.showModal, this);
|
|
||||||
},
|
|
||||||
|
|
||||||
getEl: function (selector) {
|
|
||||||
var $el = $(selector);
|
|
||||||
$el.on("hidden", this.close);
|
|
||||||
return $el;
|
|
||||||
},
|
|
||||||
|
|
||||||
showModal: function (view) {
|
|
||||||
view.on("close", this.hideModal, this);
|
|
||||||
this.$el.modal('show');
|
|
||||||
},
|
|
||||||
|
|
||||||
hideModal: function () {
|
|
||||||
this.$el.modal('hide');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return modal;
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user