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
Fixed tooltip should produce a fixed tooltip shown on hover
fixed
No tooltip is shown first time. From the second time, tooltip is shown.
:fixed-tooltip
The text was updated successfully, but these errors were encountered:
It seems to be because of this function.
showTooltip(show) { if (show && this.$refs.actions && this.fixedTooltip) { setTimeout(() => { this.$refs.actions.forEach((item) => { if(this.toggle) { item._tooltip.show(); } }); },700); } }
this.$refs.actions is undefined until it is actually triggered for the first time. This makes it an [] Why is this check in place?
this.$refs.actions
undefined
[]
Sorry, something went wrong.
Merge pull request #15 from BoyWithSilverWings/patch-1
412fba2
#14 Remove check for $refs
It's resolved in your PR #15
No branches or pull requests
Expectation
Fixed tooltip should produce a
fixed
tooltip shown on hoverWhat actually happens
No tooltip is shown first time. From the second time, tooltip is shown.
Steps to reproduce.
:fixed-tooltip
to true.The text was updated successfully, but these errors were encountered: