Moved a bunch of methods out of the jQuery-specific Sizzle code into more-appropriate files, in jQuery itself.

This commit is contained in:
John Resig 2009-10-26 18:07:57 -04:00
parent b7ccc58afe
commit bbffc99f7c
6 changed files with 75 additions and 66 deletions

View file

@ -222,7 +222,7 @@ jQuery.fn = jQuery.prototype = {
},
is: function( selector ) {
return !!selector && jQuery.multiFilter( selector, this ).length > 0;
return !!selector && jQuery.filter( selector, this ).length > 0;
},
// For internal use only.