aboutsummaryrefslogtreecommitdiffstats
path: root/src/css.js
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2010-03-23 12:12:16 -0400
committerjeresig <jeresig@gmail.com>2010-03-23 12:12:16 -0400
commit8effe3a7dee91c833cc1774646da9d743600c64c (patch)
tree1d8c9b10b5a7431ffb9c5c70cf4654e7c98d9438 /src/css.js
parentba8938d444b9a49bdfb27213826ba108145c2e50 (diff)
downloadjquery-8effe3a7dee91c833cc1774646da9d743600c64c.tar.gz
jquery-8effe3a7dee91c833cc1774646da9d743600c64c.zip
Made it so that you no longer need to build jQuery in order to run the test suite (but you'll still need a checkout of QUnit and Sizzle, at least).
Diffstat (limited to 'src/css.js')
-rw-r--r--src/css.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/css.js b/src/css.js
index f675e13fc..ad0da6469 100644
--- a/src/css.js
+++ b/src/css.js
@@ -21,7 +21,7 @@ var rexclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
};
jQuery.fn.css = function( name, value ) {
- return access( this, name, value, true, function( elem, name, value ) {
+ return jQuery.access( this, name, value, true, function( elem, name, value ) {
if ( value === undefined ) {
return jQuery.curCSS( elem, name );
}