From abe4732aa00c26330c49b06daff7883094a965e2 Mon Sep 17 00:00:00 2001 From: Paul Ivanov Date: Thu, 13 Feb 2014 17:11:25 -0800 Subject: [PATCH] fix typo in tour.js --- IPython/html/static/notebook/js/tour.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/html/static/notebook/js/tour.js b/IPython/html/static/notebook/js/tour.js index ed7db332a..e5945fd0f 100644 --- a/IPython/html/static/notebook/js/tour.js +++ b/IPython/html/static/notebook/js/tour.js @@ -99,7 +99,7 @@ IPython = (function (IPython) { var NotebookTour = function () { this.step_duration = 5000; this.tour_steps = tour_steps ; - this.tour_steps[0].content = "This tour will take " + step_duration * tour_steps.length / 1000 + " seconds"; + this.tour_steps[0].content = "This tour will take " + this.step_duration * tour_steps.length / 1000 + " seconds"; this.tour = new Tour({ //orphan: true, storage: false, // start tour from beginning every time