From daa30a12de74764d9944e53bf63ce9a7dda5860d Mon Sep 17 00:00:00 2001 From: James Campos Date: Sun, 5 Oct 2014 07:19:14 -0700 Subject: [PATCH] better op selector, don't attach to links --- js/inline.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/js/inline.js b/js/inline.js index b83a5ae6..9232fa63 100644 --- a/js/inline.js +++ b/js/inline.js @@ -28,16 +28,12 @@ } var selector = targetNum === targetOP - ? '.op .body' + ? '#op_' + srcOP : '#reply_' + targetNum if (srcOP === targetOP) { - // XXX post hover adds fetched threads to the DOM - selector = '#thread_' + srcOP + ' ' + selector - - // bypass `(OP)` if (targetNum === targetOP) - link.node = link.node.next() + link.node = link.node.next()// bypass `(OP)` var $target = $(selector) if ($target.length) @@ -78,7 +74,8 @@ '}' + '') - $('.body a, .mentioned a') + // don't attach to outbound links + $('.body a:not([rel]), .mentioned a') .attr('onclick', null)// XXX disable highlightReply .click(inline) })()