Skip to content

Commit 813d945

Browse files
committed
fix(transition): syntax of cubic-bezier easing
1 parent 98d474b commit 813d945

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transitions/transition-wp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class WPTransition extends PageTransition {
2424
this.enteringPage.beforeClearStyles(['scale']);
2525

2626
} else {
27-
this.duration(isPresent(opts.duration) ? opts.duration : 280).easing('cubic-bezier(0,0 0.05,1)');
27+
this.duration(isPresent(opts.duration) ? opts.duration : 280).easing('cubic-bezier(0,0,0.05,1)');
2828
this.enteringPage
2929
.fromTo('scale', SCALE_SMALL, 1, true)
3030
.fromTo('opacity', 0.01, 1, true);

0 commit comments

Comments
 (0)