From ee9b589a5f56a0e73be15519686c0f52dfa9b50a Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sun, 28 Jun 2015 18:54:23 -0700 Subject: [PATCH] Prevent momentary display of previous image when setting up captcha for a second time. --- src/Posting/Captcha.v1.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Posting/Captcha.v1.coffee b/src/Posting/Captcha.v1.coffee index 535b7988f..ab313acd4 100644 --- a/src/Posting/Captcha.v1.coffee +++ b/src/Posting/Captcha.v1.coffee @@ -73,6 +73,7 @@ Captcha.v1 = beforeSetup: -> {img, input} = @nodes img.parentNode.hidden = true + img.hidden = true input.value = '' input.placeholder = 'Focus to load reCAPTCHA' @count()