From 5720a30dcf1eaf197b9f79a4b5d9b52470d91acd Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Thu, 29 Sep 2011 18:28:05 +0200 Subject: [PATCH] Hide asap. --- 4chan_x.user.js | 12 ++++++------ script.coffee | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index fd728ae0c..6a001197d 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3066,6 +3066,9 @@ if (conf['Filter']) { filter.init(); } + if (conf['Reply Hiding']) { + replyHiding.init(); + } if (conf['Image Expansion']) { imgExpand.init(); } @@ -3087,9 +3090,6 @@ if (conf['Image Hover']) { imgHover.init(); } - if (conf['Reply Hiding']) { - replyHiding.init(); - } if (conf['Quick Reply']) { QR.init(); } @@ -3134,12 +3134,12 @@ nav.init(); } } else { - if (conf['Index Navigation']) { - nav.init(); - } if (conf['Thread Hiding']) { threadHiding.init(); } + if (conf['Index Navigation']) { + nav.init(); + } if (conf['Thread Expansion']) { expandThread.init(); } diff --git a/script.coffee b/script.coffee index 9abc1e96c..2b8a048e0 100644 --- a/script.coffee +++ b/script.coffee @@ -2282,6 +2282,9 @@ Main = if conf['Filter'] filter.init() + if conf['Reply Hiding'] + replyHiding.init() + if conf['Image Expansion'] imgExpand.init() @@ -2303,9 +2306,6 @@ Main = if conf['Image Hover'] imgHover.init() - if conf['Reply Hiding'] - replyHiding.init() - if conf['Quick Reply'] QR.init() @@ -2350,12 +2350,12 @@ Main = nav.init() else #not reply - if conf['Index Navigation'] - nav.init() - if conf['Thread Hiding'] threadHiding.init() + if conf['Index Navigation'] + nav.init() + if conf['Thread Expansion'] expandThread.init()