浏览代码

Fixed undefined this.autofocus on destroy while creating on element that already have select2 applied

Foxel 12 年之前
父节点
当前提交
a957ed81fd
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      select2.js

+ 1 - 1
select2.js

@@ -756,7 +756,7 @@ the specific language governing permissions and limitations under the Apache Lic
                     .removeData("select2")
                     .unbind(".select2")
                     .attr({"tabindex": this.elementTabIndex})
-                    .prop("autofocus", this.autofocus)
+                    .prop("autofocus", this.autofocus||false)
                     .show();
             }
         },