mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
28 lines
780 B
JavaScript
28 lines
780 B
JavaScript
"use strict";
|
|
define(function () {
|
|
|
|
return Backbone.Marionette.Region.extend({
|
|
el: "#modal-region",
|
|
|
|
constructor: function () {
|
|
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) {
|
|
this.$el.addClass('modal hide fade');
|
|
|
|
//need tab index so close on escape works
|
|
//https://github.com/twitter/bootstrap/issues/4663
|
|
this.$el.attr('tabindex', '-1');
|
|
this.$el.modal({'show': true, 'keyboard': true});
|
|
}
|
|
|
|
});
|
|
}); |