Fixed a problem with changeset [3841] where a function could no longer be .extend()-ed.

This commit is contained in:
David Serduke 2007-11-30 08:39:49 +00:00
parent aca1cc3677
commit 37902e86b1
2 changed files with 10 additions and 2 deletions

View file

@ -530,7 +530,7 @@ jQuery.extend = jQuery.fn.extend = function() {
}
// Handle case when target is a string or something (possible in deep copy)
if ( typeof target != "object" )
if ( typeof target != "object" && typeof target != "function" )
target = {};
// extend jQuery itself if only one argument is passed