Skip to content

Commit

Permalink
fix(animation): fix easing timing function
Browse files Browse the repository at this point in the history
Closes #7130
  • Loading branch information
adamdbradley committed Jun 30, 2016
1 parent 267aa32 commit 0cb093e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/animations/animation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = [];
Expand Down

0 comments on commit 0cb093e

Please sign in to comment.