瀏覽代碼

Remove deprecated calls to `jQuery.isFunction` (#5955)

Co-authored-by: Anthonius Alfred Andreas <[email protected]>
Anthon 4 年之前
父節點
當前提交
0a1bcdd68f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/js/select2/data/ajax.js

+ 1 - 1
src/js/select2/data/ajax.js

@@ -45,7 +45,7 @@ define([
 
     if (this._request != null) {
       // JSONP requests cannot always be aborted
-      if ($.isFunction(this._request.abort)) {
+      if (typeof this._request.abort === 'function') {
         this._request.abort();
       }