ionic-tooltips
ionic-tooltips copied to clipboard
TODO: hide tooltips on page scroll
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; }
I have started a new project for this and am adding this to v1.0.0.