Skip to content

Commit

Permalink
fix(title): improve reliability of large title ios nav transition (#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Mar 25, 2020
1 parent 2707289 commit 3bd6b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/utils/transition/ios.transition.ts
Expand Up @@ -14,7 +14,7 @@ export const shadow = <T extends Element>(el: T): ShadowRoot | T => {

const getLargeTitle = (refEl: any) => {
const tabs = (refEl.tagName === 'ION-TABS') ? refEl : refEl.querySelector('ion-tabs');
const query = 'ion-header:not(.header-collapse-condense-inactive) ion-title[size=large]';
const query = 'ion-header:not(.header-collapse-condense-inactive) ion-title.title-large';

if (tabs != null) {
const activeTab = tabs.querySelector('ion-tab:not(.tab-hidden), .ion-page:not(.ion-page-hidden)');
Expand Down

0 comments on commit 3bd6b5d

Please sign in to comment.