You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a (hacky) workaround for this. Add (ionScroll)="hideTooltips()" to your ion-content tag. Then define function: hideTooltips() { let elements = document.getElementsByTagName("tooltip-box"); for(var i =0, il = elements.length;i<il;i++){ elements[i].className += " hidden"; } }
And in your css, add: tooltip-box.hidden { display: none !important; }
No description provided.
The text was updated successfully, but these errors were encountered: