Does it matter? Probably not.
This commit is contained in:
parent
561ca0be64
commit
7b0b3d23e3
@ -4848,7 +4848,7 @@
|
||||
qiQuote: function(link, hidden) {
|
||||
return [
|
||||
$.tn(' '), $.el('a', {
|
||||
className: hidden ? 'hashlink filtered' : 'hashlink',
|
||||
className: "hashlink" + (hidden ? ' filtered' : ''),
|
||||
textContent: '#',
|
||||
href: link.href
|
||||
})
|
||||
|
||||
@ -4851,7 +4851,7 @@
|
||||
qiQuote: function(link, hidden) {
|
||||
return [
|
||||
$.tn(' '), $.el('a', {
|
||||
className: hidden ? 'hashlink filtered' : 'hashlink',
|
||||
className: "hashlink" + (hidden ? ' filtered' : ''),
|
||||
textContent: '#',
|
||||
href: link.href
|
||||
})
|
||||
|
||||
@ -11,7 +11,6 @@ QuoteInline =
|
||||
(link) ->
|
||||
$.on link, 'click', QuoteInline.toggle
|
||||
|
||||
|
||||
if Conf['Comment Expansion']
|
||||
ExpandComment.callbacks.push @node
|
||||
|
||||
@ -30,7 +29,7 @@ QuoteInline =
|
||||
[
|
||||
$.tn(' ')
|
||||
$.el 'a',
|
||||
className: if hidden then 'hashlink filtered' else 'hashlink'
|
||||
className: "hashlink#{if hidden then ' filtered' else ''}"
|
||||
textContent: '#'
|
||||
href: link.href
|
||||
]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user