From 49008db2f9a5d7018b8aded73a2c2d3d44c0f666 Mon Sep 17 00:00:00 2001 From: joak Date: Wed, 13 Dec 2023 00:10:57 +0100 Subject: [PATCH] secret message --- 2024/call/call.html | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/2024/call/call.html b/2024/call/call.html index 0c32559..963b61a 100644 --- a/2024/call/call.html +++ b/2024/call/call.html @@ -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);