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 (from parent 1:
f4c67b7
)
Added overflow fix.
author
John Resig
<jeresig@gmail.com>
Sun, 16 Jul 2006 20:57:18 +0000
(20:57 +0000)
committer
John Resig
<jeresig@gmail.com>
Sun, 16 Jul 2006 20:57:18 +0000
(20:57 +0000)
jquery/jquery.js
patch
|
blob
|
history
diff --git
a/jquery/jquery.js
b/jquery/jquery.js
index
5937561
..
b3e28ed
100644
(file)
--- a/
jquery/jquery.js
+++ b/
jquery/jquery.js
@@
-61,7
+61,7
@@
function jQuery(a,c) {
if ( m ) a = jQuery.clean( [ m[1] ] );
// Watch for when an array is passed in
if ( m ) a = jQuery.clean( [ m[1] ] );
// Watch for when an array is passed in
- this.get( a.constructor == Array || a.length && a[0].nodeType ?
+ this.get( a.constructor == Array || a.length && a[0] != undefined && a[0].nodeType ?
// Assume that it's an array of DOM Elements
jQuery.merge( a, [] ) :
// Assume that it's an array of DOM Elements
jQuery.merge( a, [] ) :
@@
-1107,18
+1107,18
@@
new function() {
this.length ? this[0][n] : null :
this.attr( n, h );
};
this.length ? this[0][n] : null :
this.attr( n, h );
};
- }
-
- var css = "width,height,top,left,position,float,overflow,color,background".split(",");
-
+ };
+
+ var css = "width,height,top,left,position,float,overflow,color,background".split(",");
+
for ( var i in css ) new function() {
var n = css[i];
jQuery.fn[ i ] = function(h) {
return h == undefined ?
for ( var i in css ) new function() {
var n = css[i];
jQuery.fn[ i ] = function(h) {
return h == undefined ?
- this.length ? jQuery.css( this[0], n ) : null :
+ ( this.length ? jQuery.css( this[0], n ) : null ) :
this.css( n, h );
};
this.css( n, h );
};
- }
+ };
}
}