From 90fe5b74e35149683c84754e4623cb10e2ca5e02 Mon Sep 17 00:00:00 2001 From: James Campos Date: Mon, 20 Jun 2011 22:17:48 -0700 Subject: [PATCH] add report buttons before backlinking the backlink container's root will hit more often on the first try --- 4chan_x.user.js | 6 +++--- script.coffee | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 83af44a87..399b1bc9e 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -2592,6 +2592,9 @@ if (form && $.config('Quick Reply')) { qr.init(); } + if ($.config('Report Button')) { + reportButton.init(); + } if ($.config('Quote Backlinks')) { quoteBacklink.init(); } @@ -2604,9 +2607,6 @@ if ($.config('Indicate OP quote')) { quoteOP.init(); } - if ($.config('Report Button')) { - reportButton.init(); - } if ($.config('Thread Watcher')) { watcher.init(); } diff --git a/script.coffee b/script.coffee index 870f5f492..ec7fc838e 100644 --- a/script.coffee +++ b/script.coffee @@ -2017,6 +2017,9 @@ main = if form and $.config 'Quick Reply' qr.init() + if $.config 'Report Button' + reportButton.init() + if $.config 'Quote Backlinks' quoteBacklink.init() @@ -2029,9 +2032,6 @@ main = if $.config 'Indicate OP quote' quoteOP.init() - if $.config 'Report Button' - reportButton.init() - if $.config 'Thread Watcher' watcher.init()