Browse Source

change serverURL to just server (fixes typo -- couple of templates).

This is just a typo fix. I put 'serverURL' in places and hadn't
realised. 'serverURL' should say 'server'.
stable
Craig Oates 2 years ago
parent
commit
b89dfd828f
  1. 5
      templates/archive-entry.html
  2. 4
      templates/page.html

5
templates/archive-entry.html

@ -102,6 +102,11 @@
</div>
</article>
<script>
let server = "{{system-data.first.search-url}}";
console.log ("SEARCH URL: " + server);
</script>
<script src="/js/instant-meilisearch-0.8.0.js"></script>
<script src="/js/instantsearch-4.43.1.js"></script>
<script src="/js/quick-search.js"></script>

4
templates/page.html

@ -61,8 +61,8 @@
<script>
let searchURL = "{{system-data.first.search-url}}";
console.log ("SEARCH URL: " + searchURL);
let server = "{{system-data.first.search-url}}";
console.log ("SEARCH URL: " + server);
</script>
<script src="/js/instant-meilisearch-0.8.0.js"></script>
<script src="/js/instantsearch-4.43.1.js"></script>

Loading…
Cancel
Save