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:
57403c1
)
Added some .css() fixes.
author
John Resig
<jeresig@gmail.com>
Sun, 16 Jul 2006 20:10:37 +0000
(20:10 +0000)
committer
John Resig
<jeresig@gmail.com>
Sun, 16 Jul 2006 20:10:37 +0000
(20:10 +0000)
jquery/jquery.js
patch
|
blob
|
history
diff --git
a/jquery/jquery.js
b/jquery/jquery.js
index
2bde96f
..
5937561
100644
(file)
--- a/
jquery/jquery.js
+++ b/
jquery/jquery.js
@@
-308,7
+308,7
@@
jQuery.fn = jQuery.prototype = {
* @param Object value The value to set the property to.
*/
css: function( key, value ) {
- return this.attr( key, value, "css" );
+ return this.attr( key, value, "curCSS" );
},
/**
@@
-1177,7
+1177,11
@@
jQuery.extend({
return p == "height" ? oHeight : oWidth;
}
-
+
+ return jQuery.curCSS( e, p );
+ },
+
+ curCSS: function(e,p) {
var r;
if (e.style[p])