Merge pull request #1994 from NativeScript/raikov/fix-animations-crash

Fix animations crash
This commit is contained in:
tzraikov
2016-04-19 17:45:22 +03:00

View File

@@ -105,8 +105,10 @@ export class KeyframeAnimation {
this._isPlaying = false; this._isPlaying = false;
for (let i = this._nativeAnimations.length - 1; i >= 0; i--) { for (let i = this._nativeAnimations.length - 1; i >= 0; i--) {
let animation = this._nativeAnimations[i]; let animation = this._nativeAnimations[i];
if (animation.isPlaying) {
animation.cancel(); animation.cancel();
} }
}
this._rejectAnimationFinishedPromise(); this._rejectAnimationFinishedPromise();
} }
} }