Twitter boot strap version 2.2.1
For me stay does not seem to work, the following code shows me a popup full of links, however moving from the element that triggers the popover to the popover its self causes it to fade away and
stay: true
does NOT work.
jQuery('#adminmenu li.wp-not-current-submenu.wp-has-submenu, .folded #adminmenu li.wp-has-submenu').popover({
html: true,
stay: true,
title: function() {
var title = jQuery(this).find('a.menu-top').html();
return title;
},
content: function() {
var submenu = jQuery(this).find('.wp-submenu').html();
return submenu;
},
placement: 'right',
trigger: 'hover',
});
any ideas?