Hi all, i am new in roots. I have installed and started using roots and i have an issue with popover. I added the below code
$('[data-toggle="tooltip"]').tooltip({});
$('[data-toggle="popover"]').popover({trigger: 'focus'});
in the _main.js common init: section to be included in all pages and popover and tooltip work fine. However when i click on the popover the pages scrolls to top.
Is there a way to prevent this with a return false like this? (it doesn’t work)
$('[data-toggle="popover"]').on('show.bs.popover', function () {
return false;
})