forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-21 21:27:36 -06:00
parent dbd7faa9b2
commit ce7aac7869
1 changed files with 6 additions and 2 deletions

View File

@ -367,8 +367,12 @@
<script> <script>
document.body.addEventListener('focus', (event) => { document.body.addEventListener('focus', (event) => {
console.log(event) console.log(event)
document.body.blur();
}); });
window.onload = function() {
document.body.blur()
};
</script> </script>
</body> </body>