stop confetti from triggering inside textboxes

master
Aevann 2024-04-28 15:37:51 +03:00
parent 70cf319041
commit 2927e1cddf
1 changed files with 4 additions and 0 deletions

View File

@ -1,4 +1,8 @@
document.addEventListener('click', function(e) {
if (e.target instanceof HTMLTextAreaElement || e.target instanceof HTMLInputElement)
return;
function random(max){
return Math.random() * (max - 0) + 0;
}