I have implemented the Angular UI Bootstrap accordion and popover functionality from http://angular-ui.github.io/bootstrap/. However, I am facing an issue where the popover is only displaying inside the accordion and creating an overlay.
Here is the HTML code snippet used:
<accordion>
<accordion-group is-open="element.hide" is-disabled="lock">
<accordion-heading>
<a href="" ng-click="element.hide = false"><i class="icon-chevron-right" ng-hide="element.hide"></i></a>
<a href="" ng-click="element.hide = true"><i class="icon-chevron-down" ng-show="element.hide"></i></a>
<i ng-show="element.description" popover="{{element.description}}" popover-trigger="mouseenter" class="icon-info-sign"></i>
</accordion-heading>
//inner eccordion HTML
</accordion-group>
</accordion>