diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2007-02-17 20:58:04 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2007-02-17 20:58:04 +0000 |
commit | c66935db9d6068087f1fca83626db0b9280343e2 (patch) | |
tree | ea76ca2fe691da4b9d3a3779625cd344386941a8 /src | |
parent | ef1bd0453245c3b619cad33303e167899581067a (diff) | |
download | jquery-c66935db9d6068087f1fca83626db0b9280343e2.tar.gz jquery-c66935db9d6068087f1fca83626db0b9280343e2.zip |
Removing fix for #910 causing Safari to crash
Diffstat (limited to 'src')
-rw-r--r-- | src/jquery/jquery.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 4e8f7d565..e1840a6bf 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1470,7 +1470,7 @@ jQuery.extend({ if ( arg.length === 0 ) return; - if ( arg[0] == undefined || (jQuery.browser.msie && jQuery.nodeName(arg,"form")) ) + if ( arg[0] == undefined ) r.push( arg ); else r = jQuery.merge( r, arg ); |