diff options
author | Alexander Biehl <abiehl@novomind.com> | 2017-08-29 11:48:36 +0200 |
---|---|---|
committer | Alexander Biehl <abiehl@novomind.com> | 2017-08-29 11:48:36 +0200 |
commit | c9f8657ed98f8813e43c3316bc53812fb2a81eb3 (patch) | |
tree | 9cb91f113223b46b3bbb6719be6744e7b8fd22c1 /haddock-api/resources/html | |
parent | eb88b014c33e5a3d36e7b44885940f70289c00bf (diff) |
QuickNav: Also use baseUrl for doc-index.json request
Diffstat (limited to 'haddock-api/resources/html')
-rw-r--r-- | haddock-api/resources/html/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haddock-api/resources/html/index.js b/haddock-api/resources/html/index.js index 109a106b..fccd0349 100644 --- a/haddock-api/resources/html/index.js +++ b/haddock-api/resources/html/index.js @@ -80,7 +80,7 @@ var App = createClass({ activeLinkIndex: -1, moduleResults: [] }); - loadJSON("doc-index.json", function(data) { + loadJSON(baseUrl + "/doc-index.json", function(data) { self.setState({ fuse: new Fuse(data, { threshold: 0.4, |