When opening a dropdown, don't prevent other dropdowns from closing

This commit is contained in:
JC Brand 2020-08-18 15:09:37 +02:00
parent f5aaaa8712
commit 7cbb1b23b2

View File

@ -30,7 +30,6 @@ export class BaseDropdown extends CustomElement {
}
toggleMenu (ev) {
ev.stopPropagation();
ev.preventDefault();
if (u.hasClass('show', this.menu)) {
this.hideMenu();