This commit is contained in:
Lilith Ashley Nyx Arson 🔥 2024-11-03 22:58:31 +01:00
parent c504b1e767
commit e734b85e79
Signed by: lilith
SSH key fingerprint: SHA256:LAjgsAMyT3LO2JVtr6fQ4N3RTYoRRlIm5wAKsbDife4

View file

@ -44,11 +44,13 @@ fetch(host.replace("%", "top10")).then(r => r.text()).then(r => {
var tr = document.createElement("tr");
var th = document.createElement("th");
th.title = "Info Hash"
th.textContent = "\uf4df";
tr.appendChild(th);
for (const t of Object.keys(hashes[Object.keys(hashes)[0]])) {
var th = document.createElement("th");
th.title = t;
th.textContent = i[t.slice(0, 1).toUpperCase()];
tr.appendChild(th);
}