From 2cfec41c1618d00969b9ee8f81a08c11a374d9f5 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sun, 28 Jun 2015 16:43:00 -0700 Subject: [PATCH] Don't remove captcha upon leaving form; more annoying than useful. --- src/Posting/Captcha.replace.coffee | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Posting/Captcha.replace.coffee b/src/Posting/Captcha.replace.coffee index e118edded..24d9d867c 100644 --- a/src/Posting/Captcha.replace.coffee +++ b/src/Posting/Captcha.replace.coffee @@ -27,11 +27,6 @@ Captcha.replace = else if location.hostname is 'boards.4chan.org' form = $.id 'postForm' form.addEventListener 'focus', (-> Captcha.v1.create()), true - form.addEventListener 'blur', -> - $.queueTask -> - unless form.contains(document.activeElement) or $.id('qr')?.contains(document.activeElement) - Captcha.v1.destroy() - , true else Captcha.v1.create()