Does it matter? Probably not.

This commit is contained in:
Zixaphir 2014-01-13 00:20:27 -07:00
parent 561ca0be64
commit 7b0b3d23e3
3 changed files with 3 additions and 4 deletions

View File

@ -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
})

View File

@ -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
})

View File

@ -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
]