Bootstrap tour - Получение TypeError: Невозможно прочитать свойство 'onNext' из неопределенного - PullRequest
0 голосов
/ 03 мая 2018

Я пытаюсь реализовать bootstrap-tour на моем сайте. Однако, когда я нажимаю «Далее» в поповере тура, я всегда получаю ошибку ниже, и тур не переходит к следующему шагу.

bootstrap-tour.js:469 Uncaught TypeError: Cannot read property 'onNext' of undefined
at Tour._showNextStep (bootstrap-tour.js:469)
at Tour._callOnPromiseDone (bootstrap-tour.js:812)
at Tour.next (bootstrap-tour.js:178)
at HTMLButtonElement.<anonymous> (bootstrap-tour.js:741)
at HTMLDocument.dispatch (jquery-1.9.1.js:3074)
at HTMLDocument.elemData.handle (jquery-1.9.1.js:2750)
Tour._showNextStep @ bootstrap-tour.js:469
Tour._callOnPromiseDone @ bootstrap-tour.js:812
Tour.next @ bootstrap-tour.js:178
(anonymous) @ bootstrap-tour.js:741
dispatch @ jquery-1.9.1.js:3074
elemData.handle @ jquery-1.9.1.js:2750

Ниже приведено то, что я добавил в качестве шагов тура:

$(document).ready(function() {

  var tour = new Tour({

    steps: [
        {
          element: ".stepClass",
          title: "Title1",            
          content: "Message 1.",
          debug:true//Set this option to true to have some useful informations printed in the console.
        },
        {
          element: ".stepClass2",
          title: "Title2",
          content: "Message 2",
         debug:true
        }

      ],
      backdrop: true,
      storage: false

  });
 tour.init();
 tour.start();

});

Может кто-нибудь помочь, пожалуйста?

...