From eb88b014c33e5a3d36e7b44885940f70289c00bf Mon Sep 17 00:00:00 2001 From: Alexander Biehl Date: Tue, 29 Aug 2017 11:40:19 +0200 Subject: QuickNav: Make docbase configurable --- haddock-api/resources/html/index.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'haddock-api/resources/html') diff --git a/haddock-api/resources/html/index.js b/haddock-api/resources/html/index.js index 6d5b2bfc..109a106b 100644 --- a/haddock-api/resources/html/index.js +++ b/haddock-api/resources/html/index.js @@ -1,3 +1,7 @@ +quickNav = (function() { + +var baseUrl; + // alias preact's hyperscript reviver since it's referenced a lot: var h = preact.h; @@ -256,7 +260,7 @@ var App = createClass({ var renderItem = function(item) { return h('li', { class: 'search-result' }, - this.navigationLink(item.link, {}, + this.navigationLink(baseUrl + "/" + item.link, {}, h(DocHtml, { html: item.display_html }) ) ); @@ -379,4 +383,10 @@ var NoResultsMsg = function(props) { return messages[(props.searchString || 'a').charCodeAt(0) % messages.length]; }; -preact.render(h(App), document.body); +return { + init: function(docBaseUrl) { + baseUrl = docBaseUrl || ""; + preact.render(h(App), document.body); + } +} +})(); -- cgit v1.2.3