⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.90
Server IP:
104.21.96.1
Server:
Linux vmi2315822.contaboserver.net 5.15.0-134-generic #145-Ubuntu SMP Wed Feb 12 20:08:39 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.3.21
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
CyberCP
/
public
/
static
/
admin
/
js
/
View File Name :
cancel.js
'use strict'; { // Call function fn when the DOM is loaded and ready. If it is already // loaded, call the function now. // http://youmightnotneedjquery.com/#ready function ready(fn) { if (document.readyState !== 'loading') { fn(); } else { document.addEventListener('DOMContentLoaded', fn); } } ready(function() { function handleClick(event) { event.preventDefault(); const params = new URLSearchParams(window.location.search); if (params.has('_popup')) { window.close(); // Close the popup. } else { window.history.back(); // Otherwise, go back. } } document.querySelectorAll('.cancel-link').forEach(function(el) { el.addEventListener('click', handleClick); }); }); }