Actually fix quote resurrection of existing posts.
This commit is contained in:
parent
c715b933d8
commit
0ad0510bd3
@ -3345,7 +3345,7 @@
|
|||||||
nodes.push(a = $.el('a', {
|
nodes.push(a = $.el('a', {
|
||||||
textContent: "" + quote + "\u00A0(Dead)"
|
textContent: "" + quote + "\u00A0(Dead)"
|
||||||
}));
|
}));
|
||||||
if (board === g.BOARD && $.id("#p" + id)) {
|
if (board === g.BOARD && $.id("p" + id)) {
|
||||||
a.href = "#p" + id;
|
a.href = "#p" + id;
|
||||||
a.className = 'quotelink';
|
a.className = 'quotelink';
|
||||||
a.setAttribute('onclick', "replyhl('" + id + "');");
|
a.setAttribute('onclick', "replyhl('" + id + "');");
|
||||||
|
|||||||
@ -2548,7 +2548,7 @@ Quotify =
|
|||||||
# \u00A0 is nbsp
|
# \u00A0 is nbsp
|
||||||
textContent: "#{quote}\u00A0(Dead)"
|
textContent: "#{quote}\u00A0(Dead)"
|
||||||
|
|
||||||
if board is g.BOARD and $.id "#p#{id}"
|
if board is g.BOARD and $.id "p#{id}"
|
||||||
a.href = "#p#{id}"
|
a.href = "#p#{id}"
|
||||||
a.className = 'quotelink'
|
a.className = 'quotelink'
|
||||||
a.setAttribute 'onclick', "replyhl('#{id}');"
|
a.setAttribute 'onclick', "replyhl('#{id}');"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user