Attempting to integrate bootstrap-tour with bootstrap 4 and encountering the following error:
Type Error: n.popover is not a function
The code initialization looks like this:
var tour = new Tour({
steps: [
{
element: "#nextLesson",
title: "Title of my step",
content: "Content of my step"
}
]
});
tour.init();
tour.start();