1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00

renamed remove methods in QualityProfile, Notification

This commit is contained in:
kay.one
2013-05-22 19:39:28 -07:00
parent a37ccf1d94
commit 4b5b0ad751
3 changed files with 4 additions and 35 deletions
-31
View File
@@ -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;
});