diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-10-27 20:43:35 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-10-27 20:43:35 +0200 |
commit | 1c75fcaf02ceb144152d59557643c6fdd7264065 (patch) | |
tree | 5184af75f2fd27ca6b81c24a06b1676d17ca2c76 /src/Animator.js | |
parent | b1b776a710d0ce0a6259043b8ce0665e205195fa (diff) | |
download | svg.js-1c75fcaf02ceb144152d59557643c6fdd7264065.tar.gz svg.js-1c75fcaf02ceb144152d59557643c6fdd7264065.zip |
resolve circular references and make example working again
Diffstat (limited to 'src/Animator.js')
-rw-r--r-- | src/Animator.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Animator.js b/src/Animator.js index d49ab12..eca6ee3 100644 --- a/src/Animator.js +++ b/src/Animator.js @@ -1,6 +1,6 @@ import Queue from './Queue.js' -export default { +const Animator = { nextDraw: null, frames: new Queue(), timeouts: new Queue(), @@ -81,3 +81,5 @@ export default { : null } } + +export default Animator |