fix captcha reload for ukko page
This commit is contained in:
parent
6d7f2bd587
commit
f47b181290
@ -14,7 +14,10 @@ function reload(el) {
|
||||
}
|
||||
|
||||
onready(function(){
|
||||
document.getElementById("captcha_img").onclick = function() {
|
||||
reload(document.getElementById("captcha_img"));
|
||||
};
|
||||
var e = document.getElementById("captcha_img");
|
||||
if (e) {
|
||||
e.onclick = function() {
|
||||
reload(document.getElementById("captcha_img"));
|
||||
};
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user