فهرست منبع

Also check if search input should be focussed for multiselects

Lee Boynton 11 سال پیش
والد
کامیت
2d6b74c2ac
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      select2.js

+ 3 - 1
select2.js

@@ -2827,7 +2827,9 @@ the specific language governing permissions and limitations under the Apache Lic
             }
 
             this.updateResults(true);
-            this.search.focus();
+            if (this.opts.shouldFocusInput(this)) {
+                this.search.focus();
+            }
             this.opts.element.trigger($.Event("select2-open"));
         },