From 9554ff9438ca13bfe97cad8dabb93d6ab2655920 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Sun, 11 Feb 2024 14:47:29 +1100 Subject: [PATCH] remove logging --- website/who-else/index.html | 5 ----- 1 file changed, 5 deletions(-) diff --git a/website/who-else/index.html b/website/who-else/index.html index 7b3ada4..001d1d6 100644 --- a/website/who-else/index.html +++ b/website/who-else/index.html @@ -99,17 +99,14 @@ var libraries = [] if (ils && !discovery) { - console.log("ils only") libraries = data.filter( (lib) => lib.ils == ils).sort( (a,b) => { return (a.name < b.name) ? -1 : (a.name > b.name) ? 1 : 0; }) } else if (discovery && !ils) { - console.log("discovery only") libraries = data.filter( (lib) => lib.discovery == discovery).sort( (a,b) => { return (a.name < b.name) ? -1 : (a.name > b.name) ? 1 : 0; }) } else { - console.log("both") let ils_libs = data.filter( (lib) => lib.ils == ils) libraries = ils_libs.filter( (lib) => lib.discovery == discovery).sort( (a,b) => { return (a.name < b.name) ? -1 : (a.name > b.name) ? 1 : 0; @@ -117,7 +114,6 @@ } // account for no disovery listed or neither - console.log(libraries) for (let lib of libraries) { const li = document.createElement('li') if (lib.url) { @@ -132,7 +128,6 @@ listing.appendChild(li) } }) -