2024-05-29 12:21:44 +02:00
|
|
|
async function dokelu() {
|
|
|
|
const response = await fetch("/index.php?listfiles=1");
|
|
|
|
const tabulka = document.getElementById("tabulka");
|
2024-05-29 12:23:19 +02:00
|
|
|
tabulka.innerHTML = await response.text();
|
2024-05-29 12:21:44 +02:00
|
|
|
}
|
|
|
|
dokelu();
|