Tweaking the formatting from the previous commit.
This commit is contained in:
parent
65b24861bc
commit
1970154c3b
10
src/css.js
10
src/css.js
|
@ -93,13 +93,11 @@ jQuery.extend({
|
|||
|
||||
var hooks = jQuery.cssHooks[name] || {};
|
||||
|
||||
if ( set ) {
|
||||
if ( !('set' in hooks) || hooks.set( elem, value ) === false ) {
|
||||
style[ name ] = value;
|
||||
}
|
||||
if ( set && (!("set" in hooks) || hooks.set( elem, value ) === false) ) {
|
||||
style[ name ] = value;
|
||||
}
|
||||
|
||||
if ( 'get' in hooks ) {
|
||||
if ( "get" in hooks ) {
|
||||
var cssHookReturn = hooks.get( elem, false );
|
||||
if ( cssHookReturn !== false ) {
|
||||
return cssHookReturn;
|
||||
|
@ -134,7 +132,7 @@ jQuery.extend({
|
|||
name = styleFloat;
|
||||
}
|
||||
|
||||
if ( 'get' in hooks && ( ret = hooks.get( elem, force ) ) !== false ) {
|
||||
if ( "get" in hooks && ( ret = hooks.get( elem, force ) ) !== false ) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue