Fixed: Manual Import not scrolling after using file browser

Closes #745
pull/4/head
Mark McDowall 8 years ago
parent e9248e284e
commit 7284ef50eb

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

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

Loading…
Cancel
Save