瀏覽代碼

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();
     }
   };