rozdeleni do struktury

This commit is contained in:
JiriUhlir
2026-05-27 12:15:11 +02:00
parent 12f6323185
commit 2b20444324
14 changed files with 749 additions and 661 deletions
+6
View File
@@ -0,0 +1,6 @@
function copyValue(id) {
const el = document.getElementById(id);
el.select();
el.setSelectionRange(0, 99999);
navigator.clipboard.writeText(el.value);
}