aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/css.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/css.js b/src/css.js
index 40e59a85e..8b0fda000 100644
--- a/src/css.js
+++ b/src/css.js
@@ -122,16 +122,16 @@ jQuery.extend({
},
css: function( elem, name, extra ) {
- // Make sure that we're working with the right name
- var ret,
- hooks;
+ var ret, hooks;
+ // Make sure that we're working with the right name
name = jQuery.camelCase( name );
hooks = jQuery.cssHooks[ name ];
name = jQuery.cssProps[ name ] || name;
+
// cssFloat needs a special treatment
- if ( name === 'cssFloat' ) {
- name = 'float';
+ if ( name === "cssFloat" ) {
+ name = "float";
}
// If a hook was provided get the computed value from there