Last active
November 14, 2019 12:13
-
-
Save andrew-svirin/0ea7f437e963e05074a752cd42abc863 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Make bootstrap modal dialogs stackable. | |
*/ | |
$(document).on('show.bs.modal', '.modal', function () { | |
const zIndex = 1040 + (10 * $('.modal:visible').length); | |
$(this).css('z-index', zIndex); | |
setTimeout(function() { | |
$('.modal-backdrop').not('.modal-stack').css('z-index', zIndex - 1).addClass('modal-stack'); | |
}, 0); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment