User can disable backlinks if they want to, off by default
This commit is contained in:
parent
1f28316fca
commit
894faf989c
@ -124,6 +124,7 @@ onready(function() {
|
||||
}
|
||||
|
||||
App.options.add('hidePost', 'Hide inlined backlinked posts')
|
||||
App.options.add('useBacklinks', 'Enable backlinks')
|
||||
|
||||
$('head').append(
|
||||
'<style>' +
|
||||
@ -135,7 +136,10 @@ onready(function() {
|
||||
'</style>')
|
||||
|
||||
// don't attach to outbound links
|
||||
|
||||
if (App.options.get('useBacklinks')) {
|
||||
$('.body a:not([rel]), .mentioned a')
|
||||
.attr('onclick', null)// XXX disable highlightReply
|
||||
.click(inline)
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user