diff options
Diffstat (limited to 'src/effects/Tween.js')
-rw-r--r-- | src/effects/Tween.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects/Tween.js b/src/effects/Tween.js index 582d42a8b..d1e4dca8b 100644 --- a/src/effects/Tween.js +++ b/src/effects/Tween.js @@ -102,7 +102,7 @@ jQuery.easing = { return p; }, swing: function( p ) { - return 0.5 - Math.cos( p*Math.PI ) / 2; + return 0.5 - Math.cos( p * Math.PI ) / 2; } }; |