aboutsummaryrefslogtreecommitdiffstats
path: root/src/Animator.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-10-27 20:43:35 +0200
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-10-27 20:43:35 +0200
commit1c75fcaf02ceb144152d59557643c6fdd7264065 (patch)
tree5184af75f2fd27ca6b81c24a06b1676d17ca2c76 /src/Animator.js
parentb1b776a710d0ce0a6259043b8ce0665e205195fa (diff)
downloadsvg.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.js4
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