This commit is contained in:
Nicolas Stepien 2013-01-03 15:19:33 +01:00
parent 9bccd62148
commit 669147f4be
3 changed files with 4 additions and 2 deletions

View File

@ -4296,7 +4296,7 @@
if (post.isInlined && !post.isCrosspost) {
return;
}
_ref = $$('.quote.deadlink', post.blockquote);
_ref = $$('.deadlink', post.blockquote);
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
deadlink = _ref[_i];
if (deadlink.parentNode.className === 'prettyprint') {

View File

@ -1,4 +1,6 @@
master
- Mayhem
Fix dead quotes.
2.37.1
- noface

View File

@ -3517,7 +3517,7 @@ Quotify =
Main.callbacks.push @node
node: (post) ->
return if post.isInlined and not post.isCrosspost
for deadlink in $$ '.quote.deadlink', post.blockquote
for deadlink in $$ '.deadlink', post.blockquote
if deadlink.parentNode.className is 'prettyprint'
$.replace deadlink, Array::slice.call deadlink.childNodes