This commit is contained in:
Dávid Jančár 2024-05-29 12:21:44 +02:00
parent 0013a2e283
commit c74516597a

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