1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-04 10:02:40 +01:00

Fixed: Manual Import not scrolling after using file browser

Closes #745
This commit is contained in:
Mark McDowall 2016-04-17 14:54:51 -07:00
parent e9248e284e
commit 7284ef50eb
2 changed files with 15 additions and 0 deletions

View File

@ -16,6 +16,14 @@ var region = ModalRegionBase.extend({
this.$el.on('shown.bs.modal', function() {
$('.modal-backdrop:last').css('z-index', 1059);
});
},
_closed : function () {
ModalRegionBase.prototype._closed.apply(this, arguments);
if (require('../../AppLayout').modalRegion.currentView) {
$('body').addClass('modal-open');
}
}
});

View File

@ -31,6 +31,7 @@ var region = Marionette.Region.extend({
});
this.$el.on('hide.bs.modal', $.proxy(this._closing, this));
this.$el.on('hidden.bs.modal', $.proxy(this._closed, this));
this.currentView.$el.addClass('modal-dialog');
@ -52,6 +53,12 @@ var region = Marionette.Region.extend({
}
this.reset();
},
_closed: function () {
if (this.$el) {
this.$el.off('hidden.bs.modal');
}
}
});