소스 검색

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