bootstrap-jquery-plugin
bootstrap-jquery-plugin copied to clipboard
Handling Multiple Dialogs
So far this has been fixed in bootstrap #4781 and #14927
For some reason wasn't working with this plugin and I had to trick it based on this
var close = function(destroy) {... // add modal open class since we still have opened modal. if ($('.modal').length) { $('body').addClass('modal-open'); }
I'll leave this here to see if this could be enhanced or just to anyone else that could have the same problem as I did.