|
|
|
@ -155,7 +155,7 @@
|
|
|
|
|
function dropping(){
|
|
|
|
|
var dropdowns = document.querySelectorAll("select");
|
|
|
|
|
var random = Math.floor(Math.random() * dropdowns.length);
|
|
|
|
|
var dropdown = dropdowns[random]
|
|
|
|
|
var dropdown = dropdowns[random];
|
|
|
|
|
var random_option = Math.floor(Math.random() * dropdown.options.length);
|
|
|
|
|
dropdown.selectedIndex = random_option;
|
|
|
|
|
var color = pickcolor();
|
|
|
|
@ -186,6 +186,17 @@
|
|
|
|
|
return color;
|
|
|
|
|
}
|
|
|
|
|
pickcolor()
|
|
|
|
|
|
|
|
|
|
var message = " \n"+
|
|
|
|
|
" _ _ _ _ \n"+
|
|
|
|
|
"| | | | | | |\n"+
|
|
|
|
|
"| |__ ___| | | ___ | |\n"+
|
|
|
|
|
"| '_ \\ / _ \\ | |/ _ \\| |\n"+
|
|
|
|
|
"| | | | __/ | | (_) |_|\n"+
|
|
|
|
|
"|_| |_|\\___|_|_|\\___/(_)\n"+
|
|
|
|
|
"amazing that you opened the inspector to check the code. We hope you will apply \n"+
|
|
|
|
|
"and mention that you have found the codeword 'opisop'! \n";
|
|
|
|
|
console.log(message);
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|