This commit is contained in:
blank X 2019-01-28 22:51:54 +07:00
parent 000e3b290a
commit 08696c365d
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 1 additions and 2 deletions

View File

@ -13,9 +13,8 @@
min = 0 min = 0
max = 1 max = 1
var rn = Math.floor(Math.random()*(max-min+1)+min); var rn = Math.floor(Math.random()*(max-min+1)+min);
bodyc = document.getElementById('owo').class;
if (rn == 1) { if (rn == 1) {
bodyc = 'kazoo'; document.getElementById('owo').class = 'kazoo';
} }
</script> </script>
</body> </body>