Browse Source

better op selector, don't attach to links

pull/40/head
James Campos 10 years ago
committed by czaks
parent
commit
daa30a12de
  1. 11
      js/inline.js

11
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 @@
'}' +
'</style>')
$('.body a, .mentioned a')
// don't attach to outbound links
$('.body a:not([rel]), .mentioned a')
.attr('onclick', null)// XXX disable highlightReply
.click(inline)
})()

Loading…
Cancel
Save