소스 검색

fixes IE8 bug where the dropdown wouldnt open. it would actually open and close immediately because the body would get a focusin event even after the focus was set on the search field by select2. worked fine in IE9

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

+ 1 - 1
select2.js

@@ -382,7 +382,7 @@
      * blurs any Select2 container that has focus when an element outside them was clicked or received focus
      */
     $(document).ready(function () {
-        $(document).delegate("*", "mousedown focusin touchend", function (e) {
+        $(document).delegate("*", "mousedown touchend", function (e) {
             var target = $(e.target).closest("div.select2-container").get(0);
             if (target) {
                 $(document).find("div.select2-container-active").each(function () {