Skip to content

Commit

Permalink
fix(transition): make sure hidden is removed
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Jul 24, 2018
1 parent 0e91aa7 commit f52dece
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/src/utils/transition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export function setPageHidden(el: HTMLElement, hidden: boolean) {
el.setAttribute('aria-hidden', 'true');
el.classList.add('ion-page-hidden');
} else {
el.hidden = false;
el.removeAttribute('aria-hidden');
el.classList.remove('ion-page-hidden');
}
Expand Down

0 comments on commit f52dece

Please sign in to comment.