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()