mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
renamed remove methods in QualityProfile, Notification
This commit is contained in:
parent
a37ccf1d94
commit
4b5b0ad751
3 changed files with 4 additions and 35 deletions
|
@ -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;
|
||||
});
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue