Added branding / Fixed navbar

This commit is contained in:
2023-05-23 22:04:56 +02:00
parent 584b00c878
commit d5fcf94455
3 changed files with 7 additions and 19 deletions

View File

@ -3,6 +3,8 @@ const autocompleteBox = document.getElementById("autocomplete-items");
autocompleteBox.style.display = "none";
function handleSearchChange(e) {
console.log(e.target.value);
return; // No you won't. I'm not done yet.
// Check if known prefix is used (either > or #)
if(e.target.value != "" ) {
autocompleteBox.style.display = "block";