renamed remove methods in QualityProfile, Notification

This commit is contained in:
kay.one 2013-05-22 19:39:28 -07:00
commit 4b5b0ad751
3 changed files with 4 additions and 35 deletions

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;
});