diff --git a/4chan_x.user.js b/4chan_x.user.js
index 9e8824081..81e19ccc1 100644
--- a/4chan_x.user.js
+++ b/4chan_x.user.js
@@ -1200,14 +1200,8 @@
qr = {
init: function() {
- var h1, iframe, loadChecking;
+ var iframe, loadChecking;
if (!$.id('recaptcha_challenge_field_holder')) return;
- $('form[name=post]').hidden = true;
- h1 = $.el('h1', {
- innerHTML: 'Open the Quick Reply'
- });
- $.on($('a', h1), 'click', qr.open);
- $.add($('.postarea'), h1);
g.callbacks.push(function(root) {
return $.on($('.quotejs + .quotejs', root), 'click', qr.quote);
});
diff --git a/script.coffee b/script.coffee
index bbd8424b6..336d60297 100644
--- a/script.coffee
+++ b/script.coffee
@@ -862,11 +862,6 @@ nav =
qr =
init: ->
return unless $.id 'recaptcha_challenge_field_holder'
- $('form[name=post]').hidden = true
- h1 = $.el 'h1'
- innerHTML: 'Open the Quick Reply'
- $.on $('a', h1), 'click', qr.open
- $.add $('.postarea'), h1
g.callbacks.push (root) ->
$.on $('.quotejs + .quotejs', root), 'click', qr.quote