From ab2d10c6d62c4d2b834337e238cf2a618eec4412 Mon Sep 17 00:00:00 2001 From: John Resig Date: Fri, 16 Mar 2007 04:32:37 +0000 Subject: [PATCH] Removed some un-needed code from css() and fixed a bug with how Safari handles childNodes in makeArray. --- src/jquery/jquery.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index e81b82b..061d86c 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1540,11 +1540,6 @@ jQuery.extend({ return elem.filter ? parseFloat( elem.filter.match(/alpha\(opacity=(.*)\)/)[1] ) / 100 : 1; - // Mozilla doesn't play well with opacity 1 - if ( name == "opacity" && jQuery.browser.mozilla && value == 1 ) - value = 0.9999; - - // Certain attributes only work when accessed via the old DOM 0 way if ( fix[name] ) { if ( value != undefined ) elem[fix[name]] = value; @@ -1586,7 +1581,8 @@ jQuery.extend({ makeArray: function( a ) { var r = []; - if ( a.constructor != Array ) + // Need to use typeof to fight Safari childNodes crashes + if ( typeof a != "array" ) for ( var i = 0, al = a.length; i < al; i++ ) r.push( a[i] ); else -- 1.7.10.4