I'm trying to figure out how to keep the fullcalendar popover open on hover once you hover from the event block to the popover content window.
http://jsfiddle.net/rjayako/7zoqgroj/
Currently when you hover over the event block the popover appears, but immediately disappears when you hover anywhere else. What I'm trying to achieve is have the box still show when you hover the popover box itself so that the user can click on a link within the popover box.
Here is what my eventRender for the popover looks like so far
eventRender: function(event, element) {
element.popover({
title: "My Title",
placement: 'bottom',
html: true,
content: event.msg,
trigger: "hover"
});
},
Any help would be deeply appreciated.
Regards.