Made sure that .remove now uses multiFilter. Fixes bug #4205.

This commit is contained in:
John Resig 2009-02-20 19:45:29 +00:00
parent db62240fcf
commit a37ca9e905
2 changed files with 5 additions and 2 deletions

View file

@ -1224,7 +1224,7 @@ jQuery.each({
},
remove: function( selector ) {
if ( !selector || jQuery.filter( selector, [ this ] ).length ) {
if ( !selector || jQuery.multiFilter( selector, [ this ] ).length ) {
// Prevent memory leaks
jQuery( "*", this ).add([this]).each(function(){
jQuery.event.remove(this);