diff options
Diffstat (limited to 'src/animation/Animator.js')
-rw-r--r-- | src/animation/Animator.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/animation/Animator.js b/src/animation/Animator.js index 0119cba..2786602 100644 --- a/src/animation/Animator.js +++ b/src/animation/Animator.js @@ -74,7 +74,9 @@ const Animator = { nextFrame.run() } - Animator.transforms.forEach(function (el) { el() }) + Animator.transforms.forEach(function (el) { + el() + }) // If we have remaining timeouts or frames, draw until we don't anymore Animator.nextDraw = Animator.timeouts.first() || Animator.frames.first() |