diff --git a/src/Quotelinks/QuoteInline.coffee b/src/Quotelinks/QuoteInline.coffee index 8afe993d6..96c61b98f 100644 --- a/src/Quotelinks/QuoteInline.coffee +++ b/src/Quotelinks/QuoteInline.coffee @@ -17,7 +17,12 @@ QuoteInline = return process: (link, clone) -> - return if Conf['Inline Cross-thread Quotes Only'] and link.getAttribute('href')[0] is '#' + return if ( + Conf['Inline Cross-thread Quotes Only'] and + link.pathname is location.pathname and + link.host is location.host and + link.protocol is location.protocol + ) if Conf['Quote Hash Navigation'] $.after link, QuoteInline.qiQuote link, $.hasClass link, 'filtered' unless clone $.on link, 'click', QuoteInline.toggle