aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effects/effect-shake.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/effects/effect-shake.js')
-rw-r--r--ui/effects/effect-shake.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/effects/effect-shake.js b/ui/effects/effect-shake.js
index ada249aec..596aa12ae 100644
--- a/ui/effects/effect-shake.js
+++ b/ui/effects/effect-shake.js
@@ -58,7 +58,9 @@ return $.effects.define( "shake", function( options, done ) {
// Shakes
for ( ; i < times; i++ ) {
- element.animate( animation1, speed, options.easing ).animate( animation2, speed, options.easing );
+ element
+ .animate( animation1, speed, options.easing )
+ .animate( animation2, speed, options.easing );
}
element