I've encountered an issue with the bootstrap tooltip while using fullcalendar.js. The problem isn't with the fullcalendar library itself, as I included it just to provide context.
You can view the problem on this JSfiddle link. The tooltip keeps flashing uncontrollably.
The solution seems simple - removing the overflow-y:scroll
from the .container class should fix the issue. The code would then look like this:
.container{
height:300px;
width:220px;
display:block;
margin:auto;
}
Unfortunately, I actually need the overflow-y:scroll
in place. Any suggestions or ideas on how to resolve this? Your help is greatly appreciated. Thanks.