1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Shared/Modal/Region.js
Keivan Beigi 27fc51da48 Cleaned up modals in the UI.
added empty modal for episode info
2013-05-14 18:17:53 -07:00

33 lines
940 B
JavaScript

"use strict";
define(function () {
return 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.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});
},
hideModal: function () {
this.$el.modal('hide');
}
});
});