Commit 2f4cbf6e authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

fix lint warning: unexpected end of line; it is ambiguous whether these lines...

fix lint warning: unexpected end of line; it is ambiguous whether these lines are part of the same statement
parent 970d1d19
......@@ -110,8 +110,7 @@ class CaptchasDotNet:
var image = document.getElementById ('%(id)s');
image.onerror = function() {return captchas_image_error (image);};
image.onload = function() {return captchas_image_loaded (image);};
image.timeout
= window.setTimeout(
image.timeout = window.setTimeout(
"captchas_image_error (document.getElementById ('%(id)s'))",
10000);
image.src = image.src;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment