fix(transition): syntax of cubic-bezier easing

This commit is contained in:
Vasilis Koutsopoulos
2016-11-03 01:26:36 +02:00
parent 98d474b879
commit 813d945b79

View File

@ -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);