I have a bootstrap popover with the following configuration/initialization:
$element.popover({trigger: 'manual'});
with
$element.data('bs.popover').options.content = 'some text';
$element.popover('show');
the popover will be triggered. but after the second appearance of the popover, it shows up for a second and disappears immediately. after that the popover element is destroyed.
after debugging bootstrap.js, i can say, that neither the "hide" nor the "destroy" action is triggered after the "show"-action.
EDIT:
okay, i fixed it... before one popover is shown, a "hideAll" method(this includes the popover which will have to be shown) was called. i guess the hide of one popover is called asynchronously by bootstrap, because of the fading out animation.
now i except the specific popover from the hideAll ... and all works fine