From b99f75d923535314c11d869d19f196746187ec5b Mon Sep 17 00:00:00 2001 From: ccd0 Date: Fri, 17 Jun 2016 23:54:15 -0700 Subject: [PATCH] Turn 'Show New Thread Option in Threads' on in new installs. #904 --- src/General/Settings.coffee | 1 + src/config/Config.coffee | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/General/Settings.coffee b/src/General/Settings.coffee index 2922724d9..a38d2375d 100644 --- a/src/General/Settings.coffee +++ b/src/General/Settings.coffee @@ -380,6 +380,7 @@ Settings = addSauces ['https://whatanime.ga/?auto&url=%IMG;text:wait'] if compareString < '00001.00012.00000.00000' set 'Exempt Archives from Encryption', false unless data['Exempt Archives from Encryption']? + set 'Show New Thread Option in Threads', false unless data['Show New Thread Option in Threads']? addCSS '#qr .persona .field {display: block !important;}' if data['Show Name and Subject'] addCSS '#shortcut-qr {display: none;}' if data['QR Shortcut'] is false addCSS '.qr-link-container-bottom {display: none;}' if data['Bottom QR Link'] is false diff --git a/src/config/Config.coffee b/src/config/Config.coffee index da9d75a55..bead6a5ce 100644 --- a/src/config/Config.coffee +++ b/src/config/Config.coffee @@ -425,7 +425,7 @@ Config = 1 ] 'Show New Thread Option in Threads': [ - false + true 'Show the option to post a new / different thread from inside a thread.' 1 ]