Skip to content

Commit

Permalink
fix(md): fix flicker when navigating back in MD mode on certain Andro…
Browse files Browse the repository at this point in the history
…id devices (#19553)

fixes #19491
  • Loading branch information
liamdebeasi committed Oct 7, 2019
1 parent dea1c26 commit 19ee21a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/src/utils/transition/md.transition.ts
Expand Up @@ -50,6 +50,7 @@ export const mdTransitionAnimation = (_: HTMLElement, opts: TransitionOptions):
const leavingPage = createAnimation();
leavingPage
.addElement(getIonPageElement(leavingEl))
.afterStyles({ 'display': 'none' })
.fromTo('transform', `translateY(${CENTER})`, `translateY(${OFF_BOTTOM})`)
.fromTo('opacity', 1, 0);

Expand Down

0 comments on commit 19ee21a

Please sign in to comment.