From bc0699409eb1c07bf15854c4f87194f665cfbec9 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Fri, 4 Mar 2016 12:17:54 -0600 Subject: [PATCH] fix(animations): get easing curve from parent animation --- ionic/animations/animation.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ionic/animations/animation.ts b/ionic/animations/animation.ts index 0afa78454c8..8b4d9ac08a0 100644 --- a/ionic/animations/animation.ts +++ b/ionic/animations/animation.ts @@ -56,6 +56,8 @@ export class Animation { this._pFns = []; this._fFns = []; this._fOnceFns = []; + + this._easing = this._dur = null; } element(ele: any): Animation {