From 2dacb2c8cbcb0743fff66147ba435b7666c17194 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 ae2a3d8f6..6aecf61b8 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3069,6 +3069,9 @@ if (conf['Filter']) { filter.init(); } + if (conf['Reply Hiding']) { + replyHiding.init(); + } if (conf['Image Expansion']) { imgExpand.init(); } @@ -3090,9 +3093,6 @@ if (conf['Image Hover']) { imgHover.init(); } - if (conf['Reply Hiding']) { - replyHiding.init(); - } if (conf['Quick Reply']) { QR.init(); } @@ -3137,12 +3137,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 8f48a06a5..c9ec262b9 100644 --- a/script.coffee +++ b/script.coffee @@ -2285,6 +2285,9 @@ Main = if conf['Filter'] filter.init() + if conf['Reply Hiding'] + replyHiding.init() + if conf['Image Expansion'] imgExpand.init() @@ -2306,9 +2309,6 @@ Main = if conf['Image Hover'] imgHover.init() - if conf['Reply Hiding'] - replyHiding.init() - if conf['Quick Reply'] QR.init() @@ -2353,12 +2353,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()