mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
fixed modal opening a modal.
This commit is contained in:
parent
84cc7eaa68
commit
8dee1e00e5
1 changed files with 2 additions and 7 deletions
|
@ -5,7 +5,6 @@ define(function () {
|
||||||
el: "#modal-region",
|
el: "#modal-region",
|
||||||
|
|
||||||
constructor: function () {
|
constructor: function () {
|
||||||
_.bindAll(this);
|
|
||||||
Backbone.Marionette.Region.prototype.constructor.apply(this, arguments);
|
Backbone.Marionette.Region.prototype.constructor.apply(this, arguments);
|
||||||
this.on("show", this.showModal, this);
|
this.on("show", this.showModal, this);
|
||||||
},
|
},
|
||||||
|
@ -17,17 +16,13 @@ define(function () {
|
||||||
},
|
},
|
||||||
|
|
||||||
showModal: function (view) {
|
showModal: function (view) {
|
||||||
view.on("close", this.hideModal, this);
|
|
||||||
this.$el.addClass('modal hide fade');
|
this.$el.addClass('modal hide fade');
|
||||||
|
|
||||||
//need tab index so close on escape works
|
//need tab index so close on escape works
|
||||||
//https://github.com/twitter/bootstrap/issues/4663
|
//https://github.com/twitter/bootstrap/issues/4663
|
||||||
this.$el.attr('tabindex','-1');
|
this.$el.attr('tabindex', '-1');
|
||||||
this.$el.modal({'show': true, 'keyboard': true});
|
this.$el.modal({'show': true, 'keyboard': true});
|
||||||
},
|
|
||||||
|
|
||||||
hideModal: function () {
|
|
||||||
this.$el.modal('hide');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
Loading…
Reference in a new issue