Added Mike Alsup's style/cssText fix and made a quick typeof change.

This commit is contained in:
John Resig 2006-06-13 04:09:56 +00:00
parent 83c7532161
commit 582075e965

5
jquery/jquery.js vendored
View file

@ -577,7 +577,7 @@ $.Select = function( t, context ) {
}; };
$.tag = function(a,b){ $.tag = function(a,b){
return a && typeof a.getElementsByTagName != "undefined" ? return a && a.getElementsByTagName ?
a.getElementsByTagName( b ) : []; a.getElementsByTagName( b ) : [];
}; };
@ -587,7 +587,8 @@ $.attr = function(o,a,v){
'for': 'htmlFor', 'for': 'htmlFor',
'text': 'cssText', 'text': 'cssText',
'class': 'className', 'class': 'className',
'float': 'cssFloat' 'float': 'cssFloat',
'style': 'cssText'
}; };
a = (fix[a] && fix[a].replace && fix[a]) || a; a = (fix[a] && fix[a].replace && fix[a]) || a;
var r = new RegExp("-([a-z])","ig"); var r = new RegExp("-([a-z])","ig");