diff --git a/4chan_x.user.js b/4chan_x.user.js index 267c31151..e23dc7ecf 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3855,7 +3855,7 @@ return; } $.ready(Options.init); - if (conf['Quick Reply'] && conf['Hide Original Post Form'] && g.board !== 'f') { + 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 26e7c2f3b..f567963c7 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'] and g.board isnt 'f' + if conf['Quick Reply'] and conf['Hide Original Post Form'] and g.BOARD isnt 'f' Main.css += 'form[name=post] { display: none; }' Main.addStyle()