That didn't work as expected.
This commit is contained in:
parent
a02705f520
commit
2b1a49b02e
@ -4737,7 +4737,7 @@
|
|||||||
if (Conf['Quote Inlining']) {
|
if (Conf['Quote Inlining']) {
|
||||||
$.on(link, 'click', QuoteInline.toggle);
|
$.on(link, 'click', QuoteInline.toggle);
|
||||||
if (Conf['Quote Hash Navigation']) {
|
if (Conf['Quote Hash Navigation']) {
|
||||||
nodes.push(QuoteInline.qiQuote(link, $.hasClass(link, 'filtered')));
|
nodes.push.apply(nodes, QuoteInline.qiQuote(link, $.hasClass(link, 'filtered')));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$.add(container, nodes);
|
$.add(container, nodes);
|
||||||
|
|||||||
@ -4740,7 +4740,7 @@
|
|||||||
if (Conf['Quote Inlining']) {
|
if (Conf['Quote Inlining']) {
|
||||||
$.on(link, 'click', QuoteInline.toggle);
|
$.on(link, 'click', QuoteInline.toggle);
|
||||||
if (Conf['Quote Hash Navigation']) {
|
if (Conf['Quote Hash Navigation']) {
|
||||||
nodes.push(QuoteInline.qiQuote(link, $.hasClass(link, 'filtered')));
|
nodes.push.apply(nodes, QuoteInline.qiQuote(link, $.hasClass(link, 'filtered')));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$.add(container, nodes);
|
$.add(container, nodes);
|
||||||
|
|||||||
@ -41,7 +41,7 @@ QuoteBacklink =
|
|||||||
$.on link, 'mouseover', QuotePreview.mouseover
|
$.on link, 'mouseover', QuotePreview.mouseover
|
||||||
if Conf['Quote Inlining']
|
if Conf['Quote Inlining']
|
||||||
$.on link, 'click', QuoteInline.toggle
|
$.on link, 'click', QuoteInline.toggle
|
||||||
nodes.push QuoteInline.qiQuote link, $.hasClass link, 'filtered' if Conf['Quote Hash Navigation']
|
nodes.push.apply nodes, QuoteInline.qiQuote link, $.hasClass link, 'filtered' if Conf['Quote Hash Navigation']
|
||||||
$.add container, nodes
|
$.add container, nodes
|
||||||
return
|
return
|
||||||
secondNode: ->
|
secondNode: ->
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user