Issue 1965: popover tooltip getting 'stick'
Status:  Done
Owner: ----
Closed:  Aug 2013
Reported by kneid...@gmail.com, Aug 18, 2013
hi there

i am using the following code in fullcal, to generate the pop-over tooltips for event info.

eventRender: function(event, element) {
				element.popover({
					title: event.title,
					placement: 'right',
					content: event.description,
				});
			}

the problem is that often, the tooltip, will get stuck - where it should be closing itself, after hover-off the event, but it doesnt - it just stays open, and wont close. seems to be intermittent. 

anyone have this?

thanks
Aug 25, 2013
Project Member #1 adamrs...@gmail.com
you'll want to destroy the popover plugin in the `eventDestroy` callback
Status: Done