Fix: stupid llm

This commit is contained in:
Grail Finder
2025-05-01 17:24:15 +03:00
parent b3a730b3dd
commit 6af41f061f
12 changed files with 460 additions and 34 deletions

14
assets/helpers.js Normal file
View File

@ -0,0 +1,14 @@
function copyText() {
// Get the text field
var roomLink = document.getElementById("roomlink");
// Select the text field
roomLink.select();
roomLink.setSelectionRange(0, 99999); // For mobile devices
// Copy the text inside the text field
navigator.clipboard.writeText(roomLink.value);
// Alert the copied text
alert("Copied the text: " + roomLink.value);
}