fix(animation): fix easing timing function

Closes #7130
This commit is contained in:
Adam Bradley
2016-06-30 09:53:09 -05:00
parent 267aa32f5a
commit 0cb093e394

View File

@ -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[] = [];