From 0cb093e3944511cefe57e134c74f3490ff2344f1 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Thu, 30 Jun 2016 09:53:09 -0500 Subject: [PATCH] fix(animation): fix easing timing function Closes #7130 --- src/animations/animation.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/animations/animation.ts b/src/animations/animation.ts index b51547110e..85d8faa42b 100644 --- a/src/animations/animation.ts +++ b/src/animations/animation.ts @@ -23,8 +23,8 @@ export class Animation { private _el: HTMLElement[] = []; private _opts: AnimationOptions; private _fx: {[key: string]: EffectProperty} = {}; - private _dur: number; - private _easing: string; + private _dur: number = null; + private _easing: string = null; private _bfSty: { [property: string]: any; } = {}; private _bfAdd: string[] = []; private _bfRmv: string[] = [];