Tooltips are made to display on mouseenter events on the labels. However if the label has content (I've added some divs inside of mine), mouseenter events will be picked up by these child divs, and they fail the isLabel() check used to show the tooltip.
I made a modification to the isLabel check to loop through its parents to see if any of them pass the check - if so, then that element is part of the label and the check is passed. Not sure if there are other better solutions.
Tooltips are made to display on mouseenter events on the labels. However if the label has content (I've added some divs inside of mine), mouseenter events will be picked up by these child divs, and they fail the isLabel() check used to show the tooltip.
I made a modification to the isLabel check to loop through its parents to see if any of them pass the check - if so, then that element is part of the label and the check is passed. Not sure if there are other better solutions.