From 2161a3c1fe316b04de2492e61fb903c99ef986b5 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Tue, 20 Aug 2024 01:16:09 +0200 Subject: [PATCH] show-backlinks.js: fix backlinks stacking --- js/show-backlinks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/show-backlinks.js b/js/show-backlinks.js index 418739b2..d1638785 100644 --- a/js/show-backlinks.js +++ b/js/show-backlinks.js @@ -32,7 +32,7 @@ onReady(function() { } } - let mentioned = post.find('p.intro span.mentioned'); + let mentioned = post.find('.head div.mentioned'); if (mentioned.length === 0) { mentioned = $('').prependTo(post.find('.head')); }