Revert "Temporarily hard-enable captcha on /b/."

This reverts commit 3ea1f44429ca2c21d37e848285863578ae7c7591.
This commit is contained in:
ccd0 2015-01-04 00:09:26 -08:00
parent 816be90888
commit 9c1059c39c
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ Captcha.noscript =
init: ->
return if d.cookie.indexOf('pass_enabled=1') >= 0
return unless @isEnabled = !!$.id('g-recaptcha') or g.BOARD.ID is 'b'
return unless @isEnabled = !!$.id 'g-recaptcha'
container = $.el 'div',
className: 'captcha-img'

View File

@ -3,7 +3,7 @@ Captcha.v2 =
init: ->
return if d.cookie.indexOf('pass_enabled=1') >= 0
return unless @isEnabled = !!$.id('g-recaptcha') or g.BOARD.ID is 'b'
return unless @isEnabled = !!$.id 'g-recaptcha'
@captchas = []
$.get 'captchas', [], ({captchas}) ->