-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the banner doesn't show for nest view structure #6
Comments
I think I have the same issue. Do you see this error in your console? TypeError: Cannot read property 'querySelector' of undefined |
I have the same issue. I'm using ion-nav-view as well. What I did was I edited line 149: getActiveView(body).querySelector('.scroll-content').appendChild(element[0]); into: document.querySelector('.scroll-content').appendChild(element[0]); and it worked. Maybe you can use this as well as temporary workaround |
I have a similar issue. I was able to resolve it with #28 |
it has to do with the getActiveView function i just saw: if you use for example tabs where 1 tab hasn't multiple views, structure is as follow: the getActiveView checks for a ion-view with an attribute nav-view="active" function getActiveView (body) { |
when I try to use the banner in the view page which includes ion-nav-view, the banner doesn't show.
The text was updated successfully, but these errors were encountered: