##// END OF EJS Templates
Merge pull request #5340 from minrk/btcss...
Paul Ivanov -
r15817:531268a9 merge
parent child Browse files
Show More
@@ -155,11 +155,12 b' IPython = (function (IPython) {'
155 steps: this.tour_steps,
155 steps: this.tour_steps,
156 template: tour_style
156 template: tour_style
157 });
157 });
158 this.tour.init();
158
159 };
159 };
160
160
161 NotebookTour.prototype.start = function () {
161 NotebookTour.prototype.start = function () {
162 console.log("let's start the tour");
162 console.log("let's start the tour");
163 this.tour.init();
163 this.tour.start();
164 this.tour.start();
164 if (this.tour.ended())
165 if (this.tour.ended())
165 {
166 {
@@ -149,6 +149,7 b' def find_package_data():'
149 static_data.extend([
149 static_data.extend([
150 pjoin(components, "backbone", "backbone-min.js"),
150 pjoin(components, "backbone", "backbone-min.js"),
151 pjoin(components, "bootstrap", "bootstrap", "js", "bootstrap.min.js"),
151 pjoin(components, "bootstrap", "bootstrap", "js", "bootstrap.min.js"),
152 pjoin(components, "bootstrap-tour", "build", "css", "bootstrap-tour.min.css"),
152 pjoin(components, "bootstrap-tour", "build", "js", "bootstrap-tour.min.js"),
153 pjoin(components, "bootstrap-tour", "build", "js", "bootstrap-tour.min.js"),
153 pjoin(components, "font-awesome", "font", "*.*"),
154 pjoin(components, "font-awesome", "font", "*.*"),
154 pjoin(components, "google-caja", "html-css-sanitizer-minified.js"),
155 pjoin(components, "google-caja", "html-css-sanitizer-minified.js"),
General Comments 0
You need to be logged in to leave comments. Login now