diff options
Diffstat (limited to 'src/effects/Tween.js')
-rw-r--r-- | src/effects/Tween.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/effects/Tween.js b/src/effects/Tween.js index 12eec55cf..40a02659e 100644 --- a/src/effects/Tween.js +++ b/src/effects/Tween.js @@ -77,7 +77,9 @@ Tween.propHooks = { // available and use plain properties where available if ( jQuery.fx.step[ tween.prop ] ) { jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) { + } else if ( tween.elem.style && + ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || + jQuery.cssHooks[ tween.prop ] ) ) { jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); } else { tween.elem[ tween.prop ] = tween.now; |