helpdavid

This commit is contained in:
Dávid Jančár 2024-05-29 12:23:19 +02:00
parent c74516597a
commit c1c9a9133a

@ -1,6 +1,6 @@
async function dokelu() {
const response = await fetch("/index.php?listfiles=1");
const tabulka = document.getElementById("tabulka");
tabulka.innerHTML = response.text;
tabulka.innerHTML = await response.text();
}
dokelu();