Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $(function() {
  2. return $(".modal").on("show.bs.modal", function() {
  3. var curModal;
  4. curModal = this;
  5. $(".modal").each(function() {
  6. if (this !== curModal) {
  7. $(this).modal("hide");
  8. }
  9. });
  10. });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement