minor change to confirmation message

This commit is contained in:
Amm0ni4 2024-02-24 20:28:16 +01:00
parent 5e932905ef
commit a2992f2ed1
2 changed files with 2 additions and 2 deletions

View file

@ -1758,7 +1758,7 @@
window.addEventListener('load', function() {
var linkElement = document.querySelector('.form__group > a:nth-child(5)');
if (linkElement && linkElement.href) {
if (confirm('Do you want to redirect to ' + linkElement.href + '?')) {
if (confirm('Bypass done.\nRedirect to ' + linkElement.href + ' ?')) {
window.location.assign(linkElement.href);
}
}

View file

@ -29,7 +29,7 @@
window.addEventListener('load', function() {
var linkElement = document.querySelector('.form__group > a:nth-child(5)');
if (linkElement && linkElement.href) {
if (confirm('Do you want to redirect to ' + linkElement.href + '?')) {
if (confirm('Bypass done.\nRedirect to ' + linkElement.href + ' ?')) {
window.location.assign(linkElement.href);
}
}