Init commit

This commit is contained in:
2025-07-03 01:37:41 +03:00
commit 7eff9aa08f
25 changed files with 464 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
document.addEventListener('DOMContentLoaded', () => {
document.querySelectorAll('.mono').forEach(element => {
element.addEventListener('click', async () => {
await navigator.clipboard.writeText(element.textContent);
});
});
});