/* * show-backlinks.js * https://github.com/savetheinternet/Tinyboard/blob/master/js/show-backlinks.js * * Released under the MIT license * Copyright (c) 2012 Michael Save * * Usage: * $config['additional_javascript'][] = 'js/jquery.min.js'; * // $config['additional_javascript'][] = 'js/post-hover'; (optional; must come first) * $config['additional_javascript'][] = 'js/show-backlinks.js'; * */ onready(function(){ var showBackLinks = function() { var reply_id = $(this).attr('id').replace(/^reply_/, ''); $(this).find('div.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 = $('').appendTo($post.find('p.intro')); if ($mentioned.find('a.mentioned-' + reply_id).length != 0) return; var $link = $('>>' + reply_id + ''); $link.appendTo($mentioned) if (window.init_hover) { $link.each(init_hover); } }); }; $('div.post.reply').each(showBackLinks); $(document).bind('new_post', function(e, post) { if ($(post).hasClass("reply")) { showBackLinks.call(post); } else { $(post).find('div.post.reply').each(showBackLinks); } }); });