We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4650dab + 076acf6 commit 0da9648Copy full SHA for 0da9648
notebook/static/tree/js/notebooklist.js
@@ -382,7 +382,8 @@ define([
382
var breadcrumb = $('.breadcrumb');
383
breadcrumb.empty();
384
var list_item = $('<li/>');
385
- var root = $('<li/>').append('<a href="/tree"><i class="fa fa-folder"></i></a>').click(function(e) {
+ var root_url = utils.url_path_join(that.base_url, '/tree');
386
+ var root = $('<li/>').append('<a href="' + root_url + '"><i class="fa fa-folder"></i></a>').click(function(e) {
387
// Allow the default browser action when the user holds a modifier (e.g., Ctrl-Click)
388
if(e.altKey || e.metaKey || e.shiftKey) {
389
return true;
0 commit comments