jQuery
Plugins
UI
Blog
About
Donate
Download
Documentation
Tutorials
Bug Tracker
Discussion
Bug Tracker
Search
Tickets
Go
Tracker Account
Login
About Trac
Preferences
Help/Guide
Register
Bug Tracker
Wiki
Roadmap
Browse Source
View Tickets
Search
Timeline
Ticket #1562
: extend-1562.diff
File extend-1562.diff,
0.7 kB
(added by flesler,
4 months
ago)
core.js
579
579
continue;
580
580
581
581
// Recurse if we're merging object values
582
if ( deep && copy && typeof copy == "object" && src && !copy.nodeType )
583
target[ name ] = jQuery.extend( deep, src, copy );
582
if ( deep && copy && typeof copy == "object" && !copy.nodeType )
583
target[ name ] = jQuery.extend( deep,
584
// Never move original objects, clone them
585
src || copy.length !== undefined ? [ ] : { }
586
, copy );
584
587
585
588
// Don't bring in undefined values
586
589
else if ( copy !== undefined )
Download in other formats:
Original Format