show-mentions.js
This commit is contained in:
parent
741e30e22f
commit
8afaba9a81
37
js/show-mentions.js
Normal file
37
js/show-mentions.js
Normal file
@ -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 <savetheinternet@tinyboard.org>
|
||||
*
|
||||
* 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 = $('<span class="mentioned"></span>').appendTo(post.find('p.intro'));
|
||||
|
||||
mentioned.append('<a onclick="highlightReply(\'' + reply_id + '\');" href="#' + reply_id + '">>>' + reply_id + '</a>');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user