From fd9cddd82ae0eaa333d9e9e82db622f4b28a00d3 Mon Sep 17 00:00:00 2001 From: alexandercbooth Date: Wed, 23 Nov 2016 09:59:25 -0500 Subject: [PATCH] chore(baseUrl): remove forward slash from path --- notebook/static/tree/js/notebooklist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/static/tree/js/notebooklist.js b/notebook/static/tree/js/notebooklist.js index 84cd1a7ed..4019e435a 100644 --- a/notebook/static/tree/js/notebooklist.js +++ b/notebook/static/tree/js/notebooklist.js @@ -885,7 +885,7 @@ define([ var item_path = that.selected[0].path; - window.open(utils.url_path_join(that.base_url, '/files', item_path) + '?download=1'); + window.open(utils.url_path_join(that.base_url, 'files', item_path) + '?download=1'); }; NotebookList.prototype.delete_selected = function() {