updated README, fixed search null

This commit is contained in:
2023-01-09 18:17:40 +01:00
parent 5f9eea797d
commit 47ea57f5ef
2 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ This repository contains the tools used to generate a json database of functions
## Using the database
The database can be accessed via the web hosted implementation [here]().
The database can be accessed via the web hosted implementation [here](https://valou3433.fr/cindex/).
It was generated on my personal computer, using virtual machines.
## Generating a database

View File

@@ -50,7 +50,7 @@
let func = params.function;
let search = params.search;
if (search === "") search = null;
if (search === "" || search === "null") search = null;
// Set title
document.title = (func == null ? (header == null ? "All indexed functions" : header) : func);