소스 검색

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

JC Brand 4 년 전
부모
커밋
7cbb1b23b2
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      src/components/dropdown.js

+ 0 - 1
src/components/dropdown.js

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