diff --git a/src/Animation.js b/src/Animation.js index 2d3c13e9..97b3f311 100644 --- a/src/Animation.js +++ b/src/Animation.js @@ -280,9 +280,8 @@ if (!this.batchAnim) { this.batchAnim = new Anim(function() { - if (that.lastBatchDrawTime && now() - that.lastBatchDrawTime > BATCH_DRAW_STOP_TIME_DIFF) { - that.batchAnim.stop(); - } + // stop animation after first tick + that.batchAnim.stop(); }, this); }