We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
textContent
The show action checks that content is populated before displaying it, and it does this by checking for textContent:
show
paper-tooltip/paper-tooltip.js
Lines 385 to 398 in 67a2272
The problem is if you have something like:
<paper-tooltip> <my-component></my-component> </paper-tooltip>
Now <my-component> might have a textContent, but if it doesn't the tooltip never shows.
<my-component>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
show
action checks that content is populated before displaying it, and it does this by checking fortextContent
:paper-tooltip/paper-tooltip.js
Lines 385 to 398 in 67a2272
The problem is if you have something like:
Now
<my-component>
might have atextContent
, but if it doesn't the tooltip never shows.The text was updated successfully, but these errors were encountered: