From e2782af1a3715fed5b96c5366f89f9b204f8b9a0 Mon Sep 17 00:00:00 2001 From: ericwilligers Date: Mon, 14 Aug 2017 05:56:34 +1000 Subject: [PATCH] Do not write to readonly _isFinished The property _isFinished is readonly. cancel() should not attempt to write to the property. resolves #160 --- src/animation.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/animation.js b/src/animation.js index e9f64826..69b9d2f9 100644 --- a/src/animation.js +++ b/src/animation.js @@ -191,7 +191,6 @@ this._inEffect = false; this._idle = true; this._paused = false; - this._isFinished = true; this._finishedFlag = true; this._currentTime = 0; this._startTime = null;