From a552ea843ffb444d968c41520d4512b6c9c04765 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Thu, 3 Nov 2011 06:18:18 +0100 Subject: [PATCH] Do the backlinks after quote inlining/previewing. --- 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 014937655..a4501433c 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3083,15 +3083,15 @@ if (conf['Report Button']) { reportButton.init(); } - if (conf['Quote Backlinks']) { - quoteBacklink.init(); - } if (conf['Quote Inline']) { quoteInline.init(); } if (conf['Quote Preview']) { quotePreview.init(); } + if (conf['Quote Backlinks']) { + quoteBacklink.init(); + } if (conf['Indicate OP quote']) { quoteOP.init(); } diff --git a/script.coffee b/script.coffee index 33ae2601f..442057a24 100644 --- a/script.coffee +++ b/script.coffee @@ -2337,15 +2337,15 @@ Main = if conf['Report Button'] reportButton.init() - if conf['Quote Backlinks'] - quoteBacklink.init() - if conf['Quote Inline'] quoteInline.init() if conf['Quote Preview'] quotePreview.init() + if conf['Quote Backlinks'] + quoteBacklink.init() + if conf['Indicate OP quote'] quoteOP.init()