##// END OF EJS Templates
don't automatically advance the tour
Paul Ivanov -
Show More
@@ -20,7 +20,7 b' var tour_steps = ['
20 element: "#notebook_name",
20 element: "#notebook_name",
21 title: "Filename",
21 title: "Filename",
22 placement: 'bottom',
22 placement: 'bottom',
23 content: "You can click here to change the filename for this notebook."
23 content: "Click here to change the filename for this notebook."
24 },
24 },
25 {
25 {
26 element: "#checkpoint_status",
26 element: "#checkpoint_status",
@@ -130,9 +130,9 b' IPython = (function (IPython) {'
130
130
131
131
132 var NotebookTour = function () {
132 var NotebookTour = function () {
133 this.step_duration = 5000;
133 this.step_duration = 0;
134 this.tour_steps = tour_steps ;
134 this.tour_steps = tour_steps ;
135 this.tour_steps[0].content = "This tour will take " + this.step_duration * tour_steps.length / 1000 + " seconds";
135 this.tour_steps[0].content = "You can use the left and right arrow keys to go backwards and forwards.";
136 this.tour = new Tour({
136 this.tour = new Tour({
137 //orphan: true,
137 //orphan: true,
138 storage: false, // start tour from beginning every time
138 storage: false, // start tour from beginning every time
General Comments 0
You need to be logged in to leave comments. Login now