Bootstrap Tours - Element Disappears when clicking next button.

Berk

berkibap#4233
Developer
Oct 17, 2015
863
190
hello everyone.

I'm trying to use bootstrap tours ( ).
Everything works fine but, when I click 'next' button the element is disappearing once the popover is passed.
My code :
Code:
How may I solve this? 
// Instance the tour
                var tour = new Tour({
                 steps: [
                 {
                    element: "#my-element",
                    title: "Title of my step",
                    content: "Content of my step"
                 },
                 {
                    element: "#mws-user-tools",
                    title: "Title of my step",
                    content: "Content of my step"
                 }
                ]});

                // Initialize the tour
                tour.init();

// Start the tour
tour.start();

How can I solve this?
Thanks
 

Users who are viewing this thread

Top