]> source.dussan.org Git - jquery-ui.git/commitdiff
All: Use expr.pseudos instead of deprecated expr.filters
authorMaksymenkov Eugene <foatei@gmail.com>
Sun, 8 Dec 2019 21:27:16 +0000 (23:27 +0200)
committerMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Sun, 8 Dec 2019 21:27:16 +0000 (22:27 +0100)
See:
https://github.com/jquery/jquery-migrate/blob/master/warnings.md#jqmigrate-jqueryexprfilters-is-deprecated-use-jqueryexprpseudos

Closes gh-1887

ui/effect.js
ui/widgets/datepicker.js

index f237556cfd34bd82f58dcf916fc74bbd4f9f56ca..417e83b081ab4e909d44eebd401558fa8f8c97bb 100644 (file)
@@ -942,12 +942,12 @@ $.fn.extend( {
 
 ( function() {
 
-if ( $.expr && $.expr.filters && $.expr.filters.animated ) {
-       $.expr.filters.animated = ( function( orig ) {
+if ( $.expr && $.expr.pseudos && $.expr.pseudos.animated ) {
+       $.expr.pseudos.animated = ( function( orig ) {
                return function( elem ) {
                        return !!$( elem ).data( dataSpaceAnimated ) || orig( elem );
                };
-       } )( $.expr.filters.animated );
+       } )( $.expr.pseudos.animated );
 }
 
 if ( $.uiBackCompat !== false ) {
index 63f713ec0265a1f107050fa7963b228baed78823..c777a4b0edfcf36c0a142bbfd01afc139fe2605f 100644 (file)
@@ -900,7 +900,7 @@ $.extend( Datepicker.prototype, {
                        inst = this._getInst( obj ),
                        isRTL = this._get( inst, "isRTL" );
 
-               while ( obj && ( obj.type === "hidden" || obj.nodeType !== 1 || $.expr.filters.hidden( obj ) ) ) {
+               while ( obj && ( obj.type === "hidden" || obj.nodeType !== 1 || $.expr.pseudos.hidden( obj ) ) ) {
                        obj = obj[ isRTL ? "previousSibling" : "nextSibling" ];
                }