summaryrefslogtreecommitdiff
path: root/support/jsdoc/jsdoc-custom.js
diff options
context:
space:
mode:
Diffstat (limited to 'support/jsdoc/jsdoc-custom.js')
-rw-r--r--support/jsdoc/jsdoc-custom.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/support/jsdoc/jsdoc-custom.js b/support/jsdoc/jsdoc-custom.js
index 6aae265..3dc26b0 100644
--- a/support/jsdoc/jsdoc-custom.js
+++ b/support/jsdoc/jsdoc-custom.js
@@ -16,13 +16,19 @@ $(function initSearchBar() {
var methodNames = new Bloodhound({
datumTokenizer: matchSubstrs,
queryTokenizer: Bloodhound.tokenizers.whitespace,
- prefetch: './methodNames.json'
+ prefetch: {
+ url: './methodNames.json',
+ cache: false
+ }
});
var sourceFiles = new Bloodhound({
datumTokenizer: matchSubstrs,
queryTokenizer: Bloodhound.tokenizers.whitespace,
- prefetch: './sourceFiles.json'
+ prefetch: {
+ url: './sourceFiles.json',
+ cache: false
+ }
});
var githubIssues = new Bloodhound({