Prevent closing other dropdown menus

master
Daniel Berteaud 11 years ago
parent ab827ac770
commit 51f4b27c24
  1. 3
      public/js/vroom.js

@ -464,7 +464,8 @@ function initVroom(room) {
});
// Do not close the dropdown menu when filling the email recipient
$("#inviteDropdownContainer").on("click", "li", function(e){
// and in other dropdown menus
$(".dropdown-menu").on("click", "li", function(e){
e.stopPropagation();
});
// Handle Email Invitation

Loading…
Cancel
Save