leftypol/js/show-backlinks.js

38 lines
993 B
JavaScript
Raw Normal View History

2012-03-18 13:33:06 +00:00
/*
2012-03-18 13:48:06 +00:00
* show-backlinks.js
2012-03-31 00:13:11 +00:00
* https://github.com/savetheinternet/Tinyboard/blob/master/js/show-backlinks.js
2012-03-18 13:33:06 +00:00
*
* Released under the MIT license
* Copyright (c) 2012 Michael Save <savetheinternet@tinyboard.org>
*
* Usage:
2012-03-18 13:48:06 +00:00
* $config['additional_javascript'][] = 'js/show-backlinks.js';
2012-03-18 13:33:06 +00:00
*
*/
$(document).ready(function(){
$('div.post.reply').each(function() {
var reply_id = $(this).attr('id').replace(/^reply_/, '');
$(this).find('p.body a:not([rel="nofollow"])').each(function() {
var id, post, mentioned;
if(id = $(this).text().match(/^>>(\d+)$/))
id = id[1];
else
return;
post = $('#reply_' + id);
if(post.length == 0)
return;
mentioned = post.find('p.intro span.mentioned');
if(mentioned.length == 0)
mentioned = $('<span class="mentioned"></span>').appendTo(post.find('p.intro'));
mentioned.append('<a onclick="highlightReply(\'' + reply_id + '\');" href="#' + reply_id + '">&gt;&gt;' + reply_id + '</a>');
});
});
});