From d7b1adb8c78fa9b46e21ecfaf0c2b00599958e45 Mon Sep 17 00:00:00 2001 From: Stephen Edmondson <stephen.edmondson@gmail.com> Date: Fri, 11 Jan 2019 12:41:00 -0600 Subject: [PATCH] search-data path fix --- assets/js/just-the-docs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/just-the-docs.js b/assets/js/just-the-docs.js index 3c0a1b55..5a82fc52 100644 --- a/assets/js/just-the-docs.js +++ b/assets/js/just-the-docs.js @@ -54,7 +54,7 @@ function initSearch() { jsPath = source.replace('just-the-docs.js', ''); - jsonPath = jsPath + '/search-data.json'; + jsonPath = jsPath + 'search-data.json'; var request = new XMLHttpRequest(); request.open('GET', jsonPath, true); -- GitLab