Fix selector in inline.js

Should make >>>/crossboard/links (and expanding links) work again
This commit is contained in:
7185 2014-10-27 19:13:30 +01:00 committed by czaks
parent 8943bb0bb3
commit 0b1c67574a

View File

@ -138,8 +138,8 @@ $(document).ready(function() {
// don't attach to outbound links
if (App.options.get('useInlining')) {
var assign_inline = function() {
$('.body a:not([rel]), .mentioned a')
var assign_inline = function() {
$('.body a[href*="'+location.pathname+'"]:not([rel]):not(.toolong a), .mentioned a')
.attr('onclick', null)// XXX disable highlightReply
.off('click')
.click(inline)