Skip to content

Commit 0cb093e

Browse files
committed
fix(animation): fix easing timing function
Closes #7130
1 parent 267aa32 commit 0cb093e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/animations/animation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ export class Animation {
2323
private _el: HTMLElement[] = [];
2424
private _opts: AnimationOptions;
2525
private _fx: {[key: string]: EffectProperty} = {};
26-
private _dur: number;
27-
private _easing: string;
26+
private _dur: number = null;
27+
private _easing: string = null;
2828
private _bfSty: { [property: string]: any; } = {};
2929
private _bfAdd: string[] = [];
3030
private _bfRmv: string[] = [];

0 commit comments

Comments
 (0)