diff --git a/redirect.html b/redirect.html index 7c7bdaf..bfd72df 100644 --- a/redirect.html +++ b/redirect.html @@ -15,7 +15,7 @@
-

Redirecting to ...

+

Redirecting in 5 seconds to ...


@@ -28,7 +28,9 @@

document.getElementById("redirect").style.display = "none"; } else { document.getElementById("destination").innerText = redirect + window.location.search - //window.location.href = redirect + window.location.search; + window.setTimeout(function() { + window.location.href = redirect + window.location.search; + }, 5000) } document.getElementById("set_redirect").addEventListener("click", function() { redirect = window.prompt("Redirect URL", redirect)