question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Tooltip instantly disappears

See original GitHub issue

Everything is fine on your site in the documentation. But I have a problem on my site - Tooltip disappears almost instantly.

I wanted to ask you, maybe you know why?

I have Bootstrap installed on my site (including JS) regardless of your library. That is, there is a full-fledged rails application that has its own life with Bootstrap.

But there are also Vue components for beauty. In these components, I use your library. And in these components happens that is shown in the gif that I attached.

This problem occurs wherever v-b-tooltip.hover is present. If hover is replaced on click or focus, then it will be the same.

ezgif com-video-to-gif

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Reactions:6
  • Comments:6 (1 by maintainers)

github_iconTop GitHub Comments

23reactions
tmorehousecommented, Oct 13, 2019

It looks like you are not including BootstrapVue’s custom css as mentioned in the docs.

BootstrapVue’s custom css is required to make bootstrap’s css work with Vue’s transition component.

6reactions
Pablo-Arayacommented, Dec 31, 2019

Another solution would be to include a $nextTick loader after the dom has loaded

var vm = new Vue({
	el: '#elm'
});

global.vm = vm;

// onload VueJs Component:
                        vm.$nextTick(function () {
                            $('[data-toggle="class-for-tooltip"]').tooltip();
                        });
Read more comments on GitHub >

github_iconTop Results From Across the Web

Error tooltip disappears immediately when hovering cursor
Error tooltip disappears immediately when hovering cursor · 1. You have a Flow error · 2. hover over the error · 3. try...
Read more >
Bootstrap tooltip disappears immediately · Issue #369 - GitHub
I'm trying to apply a tooltip to elements that trigger a copy using ZC, but when I mouse ... Bootstrap tooltip disappears immediately...
Read more >
Tooltip disappears after disabling and re-enabling ...
The first run of your code shows a tooltip because <b-table> initially contains the #HeaderFirst element. When you uncheck the First Name box, ......
Read more >
Mouseover Tooltips keep disappearing? Try this simple fix
Mouseover Tooltips keep disappearing? Try this simple fix: Ping the minimap. r/wow - ...
Read more >
Tooltip disappear very quickly ( few ms) after be rendered
Hello,. I currently encounter a weird issue with Tooltip in Datagrid. All is working fine on my PC for the development.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found