git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
83c7532
)
Added Mike Alsup's style/cssText fix and made a quick typeof change.
author
John Resig
<jeresig@gmail.com>
Tue, 13 Jun 2006 04:09:56 +0000
(
04:09
+0000)
committer
John Resig
<jeresig@gmail.com>
Tue, 13 Jun 2006 04:09:56 +0000
(
04:09
+0000)
jquery/jquery.js
patch
|
blob
|
history
diff --git
a/jquery/jquery.js
b/jquery/jquery.js
index
b6738a8
..
1e1e4ab
100644
(file)
--- a/
jquery/jquery.js
+++ b/
jquery/jquery.js
@@
-577,7
+577,7
@@
$.Select = function( t, context ) {
};
$.tag = function(a,b){
- return a && typeof a.getElementsByTagName != "undefined" ?
+ return a && a.getElementsByTagName ?
a.getElementsByTagName( b ) : [];
};
@@
-587,7
+587,8
@@
$.attr = function(o,a,v){
'for': 'htmlFor',
'text': 'cssText',
'class': 'className',
- 'float': 'cssFloat'
+ 'float': 'cssFloat',
+ 'style': 'cssText'
};
a = (fix[a] && fix[a].replace && fix[a]) || a;
var r = new RegExp("-([a-z])","ig");