1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-13 01:24:35 +01:00

show-backlinks.js: format

This commit is contained in:
Zankaria 2024-08-17 23:36:33 +02:00
parent e995589803
commit 8d56da9108

View File

@ -10,7 +10,6 @@
* $config['additional_javascript'][] = 'js/jquery.min.js'; * $config['additional_javascript'][] = 'js/jquery.min.js';
* // $config['additional_javascript'][] = 'js/post-hover.js'; (optional; must come first) * // $config['additional_javascript'][] = 'js/post-hover.js'; (optional; must come first)
* $config['additional_javascript'][] = 'js/show-backlinks.js'; * $config['additional_javascript'][] = 'js/show-backlinks.js';
*
*/ */
onReady(function() { onReady(function() {
@ -18,34 +17,33 @@ onReady(function() {
let reply_id = $(this).attr('id').replace(/(^reply_)|(^op_)/, ''); let reply_id = $(this).attr('id').replace(/(^reply_)|(^op_)/, '');
$(this).find('div.body a:not([rel="nofollow"])').each(function() { $(this).find('div.body a:not([rel="nofollow"])').each(function() {
let id, post, $mentioned; let id = $(this).text().match(/^>>(\d+)$/);
if (id) {
if (id = $(this).text().match(/^>>(\d+)$/)) {
id = id[1]; id = id[1];
} else { } else {
return; return;
} }
$post = $('#reply_' + id); let post = $('#reply_' + id);
if ($post.length == 0){ if (post.length == 0){
$post = $('#op_' + id); post = $('#op_' + id);
if ($post.length == 0) { if (post.length == 0) {
return; return;
} }
} }
$mentioned = $post.find('p.intro span.mentioned'); let mentioned = post.find('p.intro span.mentioned');
if($mentioned.length == 0) { if(mentioned.length == 0) {
$mentioned = $('<span class="mentioned unimportant"></span>').appendTo($post.find('p.intro')); mentioned = $('<span class="mentioned unimportant"></span>').appendTo(post.find('p.intro'));
} }
if ($mentioned.find('a.mentioned-' + reply_id).length != 0) { if (mentioned.find('a.mentioned-' + reply_id).length != 0) {
return; return;
} }
let link = $('<a class="mentioned-' + reply_id + '" onclick="highlightReply(\'' + reply_id + '\');" href="#' + reply_id + '">&gt;&gt;' + let link = $('<a class="mentioned-' + reply_id + '" onclick="highlightReply(\'' + reply_id + '\');" href="#' + reply_id + '">&gt;&gt;' +
reply_id + '</a>'); reply_id + '</a>');
link.appendTo($mentioned) link.appendTo(mentioned)
if (window.init_hover) { if (window.init_hover) {
link.each(init_hover); link.each(init_hover);
@ -54,13 +52,12 @@ onReady(function() {
}; };
$('div.post.reply').each(showBackLinks); $('div.post.reply').each(showBackLinks);
$('div.post.op').each(showBackLinks);
$(document).on('new_post', function(e, post) { $(document).on('new_post', function(e, post) {
if ($(post).hasClass("op")) { if ($(post).hasClass('reply')) {
$(post).find('div.post.reply').each(showBackLinks); showBackLinks.call(post);
} else { } else {
$(post).parent().find('div.post.reply').each(showBackLinks); $(post).find('div.post.reply').each(showBackLinks);
} }
}); });
}); });