Igor Vaynberg 13 년 전
부모
커밋
5a73385474
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      select2.js

+ 6 - 1
select2.js

@@ -488,11 +488,16 @@
                     this.highlightUnderEvent(e);
                     this.selectHighlighted(e);
                 } else {
-                    killEvent(e);
                     this.focusSearch();
                 }
+                killEvent(e);
             }));
 
+            // trap all mouse events from leaving the dropdown. sometimes there may be a modal that is listening
+            // for mouse events outside of itself so it can close itself. since the dropdown is now outside the select2's
+            // dom it will trigger the popup close, which is not what we want
+            this.dropdown.bind("click mouseup mousedown", function (e) { e.stopPropagation(); });
+
             if ($.isFunction(this.opts.initSelection)) {
                 // initialize selection based on the current value of the source element
                 this.initSelection();