nbot

A clone of the eBot by @deStrO fully based on node.js with build in Web Page - WIP
git clone git://archive.git.mtrnord.blog/MTRNord/nbot.git
Log | Files | Refs | README | LICENSE

tour.js (400B)


      1 // Instance the tour
      2 var tour = new Tour({
      3   steps: [
      4   {
      5     element: "#server_1",
      6     title: "Title of my step",
      7     content: "Content of my step",
      8     placement: 'bottom'
      9   },
     10   {
     11     element: "#server-data_1",
     12     title: "Title of my step",
     13     content: "Content of my step",
     14     placement: 'bottom'
     15   }
     16 ],
     17 backdrop: true
     18 });
     19 
     20 // Initialize the tour
     21 tour.init();
     22 
     23 // Start the tour
     24 tour.start();