Archived
1
0
This commit is contained in:
Jeff Becker 2017-09-30 12:11:58 -04:00
parent 6ec930a54a
commit 2284fac632
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

@ -131,10 +131,6 @@ onready(function() {
console.log(msg, j.url); console.log(msg, j.url);
e.innerHTML = msg; e.innerHTML = msg;
if(window.location.pathname === j.url) { if(window.location.pathname === j.url) {
setTimeout(function() {
e.disabled = false;
e.innerHTML = origText;
}, 1000);
var img = document.getElementById("captcha_img"); var img = document.getElementById("captcha_img");
if (img) { if (img) {
reloadImg(img); reloadImg(img);
@ -143,7 +139,13 @@ onready(function() {
} else if (j && j.url) { } else if (j && j.url) {
// do redirect // do redirect
window.location.pathname = j.url; window.location.pathname = j.url;
return;
} }
setTimeout(function() {
e.disabled = false;
e.innerHTML = origText;
}, 1000);
}); });
} }
} }