Skip to content

Commit

Permalink
fix(transition): wrong easing
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Nov 2, 2016
1 parent 7735be7 commit 09c08e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/alert/alert-transitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class AlertWpPopIn extends Transition {
backdrop.fromTo('opacity', 0.01, 0.5);

this
.easing('cubic-bezier(0,0 0.05,1)')
.easing('cubic-bezier(0,0,0.05,1)')
.duration(200)
.add(backdrop)
.add(wrapper);
Expand Down
2 changes: 1 addition & 1 deletion src/components/loading/loading-transitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class LoadingWpPopIn extends Transition {
backdrop.fromTo('opacity', 0.01, 0.16);

this
.easing('cubic-bezier(0,0 0.05,1)')
.easing('cubic-bezier(0,0,0.05,1)')
.duration(200)
.add(backdrop)
.add(wrapper);
Expand Down
2 changes: 1 addition & 1 deletion src/components/toast/toast-transitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export class ToastWpPopIn extends Transition {
wrapper.fromTo('scale', 1.3, 1);
}

this.easing('cubic-bezier(0,0 0.05,1)').duration(200).add(wrapper);
this.easing('cubic-bezier(0,0,0.05,1)').duration(200).add(wrapper);
}
}

Expand Down

0 comments on commit 09c08e9

Please sign in to comment.