Temporarily hard-enable captcha on /b/.

This commit is contained in:
ccd0 2015-01-03 23:38:23 -08:00
parent 163c8dc6b8
commit 3ea1f44429
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'
return unless @isEnabled = !!$.id('g-recaptcha') or g.BOARD.ID is 'b'
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'
return unless @isEnabled = !!$.id('g-recaptcha') or g.BOARD.ID is 'b'
@captchas = []
$.get 'captchas', [], ({captchas}) ->