This commit is contained in:
nieve 2025-02-11 21:56:29 -05:00
parent 80e0d539fa
commit d0d2c22e94
23 changed files with 985 additions and 374 deletions

9
static/copy.js Normal file
View file

@ -0,0 +1,9 @@
async function copy() {
await navigator.clipboard.writeText(document.getElementById('bincode_str').value);
}
async function set_listener() {
document.getElementById('copy').addEventListener('click', copy);
}
window.addEventListener('load', set_listener);