From 323410cf00b559caa563db62b74e2b76308a96a6 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Mon, 22 Dec 2014 21:07:20 -0800 Subject: [PATCH] Reload captcha when needed even if we don't focus on it. --- src/Posting/Captcha.v2.coffee | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Posting/Captcha.v2.coffee b/src/Posting/Captcha.v2.coffee index 98726a8db..f2cb19c63 100644 --- a/src/Posting/Captcha.v2.coffee +++ b/src/Posting/Captcha.v2.coffee @@ -141,8 +141,11 @@ Captcha.v2 = $.set 'captchas', @captchas @count() - if (QR.cooldown.auto or Conf['Post on Captcha Completion']) and @needed() - @shouldFocus = true + if @needed() + if QR.cooldown.auto or Conf['Post on Captcha Completion'] + @shouldFocus = true + else + QR.nodes.status.focus() @reload() else if pasted