Back out one of the changes from the previous commit that wasn't necessary to fix...
[jquery.git] / src / core.js
index 4c12150..62e41c9 100644 (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 ];
 
                        }