Is there a way to delay bootstraps popover from showing for x milliseconds?
Maybe I missed it, but I haven't found it yet, and I want to use Bootstraps popover as a tooltip for CRUD icons in a grid where I show these on each row.
When the user now hovers over all these icons it keeps flashing on and on off.
Hence I'd like to define a delay / hoverIntent so it only shows when the user stops over an icon.
Is this possible in angular-ui-bootstrap? This is what I currently have :
<button
ng-click="release(row)"
class="btn btn-mini"
popover="Release account"
popover-trigger="mouseenter">
<i class="icon-trash"></i>
</button>