소스 검색

Fixed Chrome issue: lost focus after selecting a value

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

+ 3 - 0
src/js/select2/selection/base.js

@@ -82,6 +82,9 @@ define([
       self.$selection.removeAttr('aria-owns');
 
       self.$selection.focus();
+      window.setTimeout(function () {
+        self.$selection.focus();
+      }, 0);
 
       self._detachCloseHandler(container);
     });