Skip to content

Commit

Permalink
Merge pull request #788 from perdedora/patch-747
Browse files Browse the repository at this point in the history
fixes #747
  • Loading branch information
RealAngeleno authored Sep 18, 2024
2 parents db20a35 + d8391eb commit 3291dc2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/show-backlinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ onready(function(){
$('div.post.op').each(showBackLinks);

$(document).on('new_post', function(e, post) {
showBackLinks.call(post);
if ($(post).hasClass("op")) {
$(post).find('div.post.reply').each(showBackLinks);
} else {
$(post).parent().find('div.post.reply').each(showBackLinks);
}
});
});

0 comments on commit 3291dc2

Please sign in to comment.