Skip to content

Commit

Permalink
fix(transition): syntax of cubic-bezier easing
Browse files Browse the repository at this point in the history
  • Loading branch information
vaskou committed Nov 2, 2016
1 parent 98d474b commit 813d945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transitions/transition-wp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class WPTransition extends PageTransition {
this.enteringPage.beforeClearStyles(['scale']);

} else {
this.duration(isPresent(opts.duration) ? opts.duration : 280).easing('cubic-bezier(0,0 0.05,1)');
this.duration(isPresent(opts.duration) ? opts.duration : 280).easing('cubic-bezier(0,0,0.05,1)');
this.enteringPage
.fromTo('scale', SCALE_SMALL, 1, true)
.fromTo('opacity', 0.01, 1, true);
Expand Down

0 comments on commit 813d945

Please sign in to comment.