diff --git a/js/script.js b/js/script.js index 6e6896f..ce35663 100644 --- a/js/script.js +++ b/js/script.js @@ -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); }