Server IP : 162.0.217.223 / Your IP : 216.73.216.150 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/simple-cloudflare-turnstile/js/ |
Upload File : |
/* Admin Toggles */ document.addEventListener("DOMContentLoaded", function() { if(document.querySelector("#sct-accordion-wordpress") != null) { document.querySelector("#sct-accordion-wordpress").click(); } }); var acc = document.getElementsByClassName("sct-accordion"); var i; for (i = 0; i < acc.length; i++) { acc[i].addEventListener("click", function() { this.classList.toggle("sct-active"); var panel = this.nextElementSibling; if (panel.style.display === "block") { panel.style.display = "none"; } else { panel.style.display = "block"; } }); } /* Appearance Mode Description */ document.addEventListener("DOMContentLoaded", function() { function updateDescription(selected) { // Hide all descriptions document.querySelectorAll('.wcu-appearance-always, .wcu-appearance-execute, .wcu-appearance-interaction-only') .forEach(element => element.style.display = 'none'); // Show the relevant description document.querySelector('.wcu-appearance-' + selected).style.display = 'block'; } // Update the description on page load const appearanceSelect = document.querySelector("select[name='cfturnstile_appearance']"); updateDescription(appearanceSelect.value); // Handle the select change event appearanceSelect.addEventListener("change", function() { updateDescription(this.value); }); });