Merge pull request #5340 from minrk/btcss

install bootstrap-tour css
This commit is contained in:
Paul Ivanov 2014-03-13 14:31:52 -07:00
commit 05838b7c2e
2 changed files with 3 additions and 1 deletions

View File

@ -155,11 +155,12 @@ IPython = (function (IPython) {
steps: this.tour_steps,
template: tour_style
});
this.tour.init();
};
NotebookTour.prototype.start = function () {
console.log("let's start the tour");
this.tour.init();
this.tour.start();
if (this.tour.ended())
{

View File

@ -149,6 +149,7 @@ def find_package_data():
static_data.extend([
pjoin(components, "backbone", "backbone-min.js"),
pjoin(components, "bootstrap", "bootstrap", "js", "bootstrap.min.js"),
pjoin(components, "bootstrap-tour", "build", "css", "bootstrap-tour.min.css"),
pjoin(components, "bootstrap-tour", "build", "js", "bootstrap-tour.min.js"),
pjoin(components, "font-awesome", "font", "*.*"),
pjoin(components, "google-caja", "html-css-sanitizer-minified.js"),