diff --git a/src/General/Main.coffee b/src/General/Main.coffee index eb1302a16..0d2b195bc 100755 --- a/src/General/Main.coffee +++ b/src/General/Main.coffee @@ -48,7 +48,6 @@ Main = when 'a.4cdn.org' return when 'sys.4chan.org' - Report.init() return when 'i.4cdn.org' $.asap (-> d.readyState isnt 'loading'), -> diff --git a/src/Miscellaneous/Report.coffee b/src/Miscellaneous/Report.coffee deleted file mode 100755 index 0aaeb2c41..000000000 --- a/src/Miscellaneous/Report.coffee +++ /dev/null @@ -1,8 +0,0 @@ -Report = - init: -> - return unless /report/.test(location.search) - $.asap (-> $.id 'recaptcha_response_field'), Report.ready - ready: -> - field = $.id 'recaptcha_response_field' - $.on field, 'keydown', (e) -> - $.globalEval 'Recaptcha.reload()' if e.keyCode is 8 and not field.value