From 8afaba9a810f28e49c52229c1e89a101c7839453 Mon Sep 17 00:00:00 2001 From: Michael Save Date: Mon, 19 Mar 2012 00:33:06 +1100 Subject: [PATCH] show-mentions.js --- js/show-mentions.js | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 js/show-mentions.js diff --git a/js/show-mentions.js b/js/show-mentions.js new file mode 100644 index 00000000..8fe938de --- /dev/null +++ b/js/show-mentions.js @@ -0,0 +1,37 @@ +/* + * show-mentions.js + * https://github.com/savetheinternet/Tinyboard-Tools/blob/master/js/show-mentions.js + * + * Released under the MIT license + * Copyright (c) 2012 Michael Save + * + * Usage: + * $config['additional_javascript'][] = 'js/show-mentions.js'; + * + */ + +$(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 = $('').appendTo(post.find('p.intro')); + + mentioned.append('>>' + reply_id + ''); + }); + }); +}); +