From d41db75ed54e7308a325864151014a6244f5746e Mon Sep 17 00:00:00 2001 From: Zankaria Date: Sun, 18 Aug 2024 17:55:13 +0200 Subject: [PATCH] show-backlinks.js: move backlinks to post head --- js/show-backlinks.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/show-backlinks.js b/js/show-backlinks.js index 81cdc7a1..418739b2 100644 --- a/js/show-backlinks.js +++ b/js/show-backlinks.js @@ -33,8 +33,8 @@ onReady(function() { } let mentioned = post.find('p.intro span.mentioned'); - if(mentioned.length == 0) { - mentioned = $('').appendTo(post.find('p.intro')); + if (mentioned.length === 0) { + mentioned = $('').prependTo(post.find('.head')); } if (mentioned.find('a.mentioned-' + reply_id).length != 0) {