From 1e6e4743dcf9aa6b55f332ff7afec521703082ab Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Wed, 14 Mar 2012 20:27:58 +0100 Subject: [PATCH] Don't hide the reply form in /f/. Close #326 --- 4chan_x.user.js | 2 +- script.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 0db673c08..d475de733 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3854,7 +3854,7 @@ return; } $.ready(Options.init); - if (conf['Quick Reply'] && conf['Hide Original Post Form']) { + if (conf['Quick Reply'] && conf['Hide Original Post Form'] && g.board !== 'f') { Main.css += 'form[name=post] { display: none; }'; } Main.addStyle(); diff --git a/script.coffee b/script.coffee index 5224314aa..c418964b9 100644 --- a/script.coffee +++ b/script.coffee @@ -3194,7 +3194,7 @@ Main = $.ready Options.init - if conf['Quick Reply'] and conf['Hide Original Post Form'] + if conf['Quick Reply'] and conf['Hide Original Post Form'] and g.board isnt 'f' Main.css += 'form[name=post] { display: none; }' Main.addStyle()