소스 검색

Fixes IE11 issue with select loosing focus having selected an item.

ToreOlavKristiansen 8 년 전
부모
커밋
6eee443d67
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/js/select2/selection/search.js

+ 1 - 1
src/js/select2/selection/search.js

@@ -175,7 +175,7 @@ define([
 
     this.resizeSearch();
     if (searchHadFocus) {
-      this.$search.focus();
+      this.$element.focus();
     }
   };