Some minor code cleanup.
This commit is contained in:
parent
db80ad94d5
commit
0ff4c69929
10
src/css.js
10
src/css.js
|
@ -122,16 +122,16 @@ jQuery.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
css: function( elem, name, extra ) {
|
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 );
|
name = jQuery.camelCase( name );
|
||||||
hooks = jQuery.cssHooks[ name ];
|
hooks = jQuery.cssHooks[ name ];
|
||||||
name = jQuery.cssProps[ name ] || name;
|
name = jQuery.cssProps[ name ] || name;
|
||||||
|
|
||||||
// cssFloat needs a special treatment
|
// cssFloat needs a special treatment
|
||||||
if ( name === 'cssFloat' ) {
|
if ( name === "cssFloat" ) {
|
||||||
name = 'float';
|
name = "float";
|
||||||
}
|
}
|
||||||
|
|
||||||
// If a hook was provided get the computed value from there
|
// If a hook was provided get the computed value from there
|
||||||
|
|
Loading…
Reference in a new issue