Skip to content
Snippets Groups Projects
Verified Commit 3b382a47 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

FIX: tour menu collapses too soon

parent d47b11c9
No related branches found
No related tags found
No related merge requests found
......@@ -935,8 +935,6 @@ var tour = new function() {
tour_overview.append(next);
}
panel.hover(undefined, ()=>{panel.collapse('hide');});
panel.append(tour_overview);
this.leave_tour_button.on("click", () => {this.deactivate();});
......@@ -982,6 +980,9 @@ var tour = new function() {
tour._instance.set_tour_button_text("Tour");
}
$('#caosdb-query-panel').before(tour._instance.panel);
// hide, when the mouse leaves the navbar
$('nav.navbar').hover(undefined, ()=>{$(tour._instance.panel).collapse('hide');});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment