From 13c80f3e40186ac7cab1a1510a27e5e46a459c53 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 24 Jul 2019 16:45:16 -0400 Subject: [PATCH] change const to let --- core/src/utils/animation/animation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/utils/animation/animation.ts b/core/src/utils/animation/animation.ts index 68223747d9..ebd8e612e3 100644 --- a/core/src/utils/animation/animation.ts +++ b/core/src/utils/animation/animation.ts @@ -180,7 +180,7 @@ export const createAnimation = (): Animation => { let afterStylesValue: { [property: string]: any } = {}; let webAnimations: any[] = []; - const onFinishCallbacks: any[] = []; + let onFinishCallbacks: any[] = []; let numAnimationsRunning = 0;