Fix bug where some containers end up with two CAPTCHAs inside

pull/5/head
Skylar Ittner 5 years ago
parent b91d5c6872
commit bc7e250972

@ -43,6 +43,10 @@ window.onload = function () {
if (this.readyState == 4) { if (this.readyState == 4) {
var status = this.status; var status = this.status;
var json = this.responseText; var json = this.responseText;
/* Prevent rare bug where two CAPTCHAs appear in one container */
if (container.innerHTML.trim() != "") {
return;
}
/* Create captcha div */ /* Create captcha div */
var captcha = document.createElement("div"); var captcha = document.createElement("div");
captcha.setAttribute("class", "captcheck_box"); captcha.setAttribute("class", "captcheck_box");

Loading…
Cancel
Save