I\'m trying to use http://twitter.github.io/bootstrap/javascript.html#popovers. I can set the trigger to any one of click | hover | focus | manual
. Is there a w
Related to this question:
if anyone uses Bootstrap's popover with AngularJS (using Angular-UI) and wants to define that a popover will be activated "on mouse enter" but deactivated according to one or more events, this code might be helpful:
app.config(function ($tooltipProvider) {
// when the user either leaves the element or clicks on it, the tooltip/popover will go off.
$tooltipProvider.setTriggers({
'mouseenter': 'mouseleave click',
'click': 'click',
'focus': 'blur'
});
}