Back out one of the changes from the previous commit that wasn't necessary to fix the bug and might not be desired.

This commit is contained in:
David Serduke 2007-11-28 23:53:54 +00:00
parent 95c0265486
commit b6d70a7ce3
2 changed files with 2 additions and 2 deletions

View file

@ -553,7 +553,7 @@ jQuery.extend = jQuery.fn.extend = function() {
target[ name ] = jQuery.extend( target[ name ], options[ name ] );
// Don't bring in undefined values
else if ( options[ name ] !== undefined )
else if ( options[ name ] != undefined )
target[ name ] = options[ name ];
}