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