chore(baseUrl): remove forward slash from path

This commit is contained in:
alexandercbooth 2016-11-23 09:59:25 -05:00
parent cf37b9f145
commit fd9cddd82a

View File

@ -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() {