From 2b1a49b02e987867b24d0236fbe5d284118ac2dc Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Sat, 11 Jan 2014 16:14:16 -0700 Subject: [PATCH] That didn't work as expected. --- builds/4chan-X.user.js | 2 +- builds/crx/script.js | 2 +- src/Quotelinks/QuoteBacklink.coffee | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 29930aef2..cf6d4daab 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -4737,7 +4737,7 @@ if (Conf['Quote Inlining']) { $.on(link, 'click', QuoteInline.toggle); if (Conf['Quote Hash Navigation']) { - nodes.push(QuoteInline.qiQuote(link, $.hasClass(link, 'filtered'))); + nodes.push.apply(nodes, QuoteInline.qiQuote(link, $.hasClass(link, 'filtered'))); } } $.add(container, nodes); diff --git a/builds/crx/script.js b/builds/crx/script.js index 399af1d58..f5f1086f1 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -4740,7 +4740,7 @@ if (Conf['Quote Inlining']) { $.on(link, 'click', QuoteInline.toggle); if (Conf['Quote Hash Navigation']) { - nodes.push(QuoteInline.qiQuote(link, $.hasClass(link, 'filtered'))); + nodes.push.apply(nodes, QuoteInline.qiQuote(link, $.hasClass(link, 'filtered'))); } } $.add(container, nodes); diff --git a/src/Quotelinks/QuoteBacklink.coffee b/src/Quotelinks/QuoteBacklink.coffee index 95d056571..2b5aa2342 100755 --- a/src/Quotelinks/QuoteBacklink.coffee +++ b/src/Quotelinks/QuoteBacklink.coffee @@ -41,7 +41,7 @@ QuoteBacklink = $.on link, 'mouseover', QuotePreview.mouseover if Conf['Quote Inlining'] $.on link, 'click', QuoteInline.toggle - nodes.push QuoteInline.qiQuote link, $.hasClass link, 'filtered' if Conf['Quote Hash Navigation'] + nodes.push.apply nodes, QuoteInline.qiQuote link, $.hasClass link, 'filtered' if Conf['Quote Hash Navigation'] $.add container, nodes return secondNode: ->