Source code of Leftypol imageboard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.2 KiB

12 years ago
/*
* show-op
* https://github.com/savetheinternet/Tinyboard/blob/master/js/show-op.js
*
* Adds "(OP)" to >>X links when the OP is quoted.
*
* Released under the MIT license
* Copyright (c) 2012 Michael Save <savetheinternet@tinyboard.org>
* Copyright (c) 2014 Marcin Łabanowski <marcin@6irc.net>
12 years ago
*
* Usage:
* $config['additional_javascript'][] = 'js/jquery.min.js';
* $config['additional_javascript'][] = 'js/show-op.js';
*
*/
$(document).ready(function(){
var showOPLinks = function() {
var OP;
if ($('div.banner').length == 0) {
10 years ago
OP = parseInt($(this).parent().find('div.post.op a.post_no:eq(1)').text());
12 years ago
} else {
10 years ago
OP = parseInt($('div.post.op a.post_no:eq(1)').text());
12 years ago
}
$(this).find('div.body a:not([rel="nofollow"])').each(function() {
12 years ago
var postID;
if(postID = $(this).text().match(/^>>(\d+)$/))
postID = postID[1];
else
return;
if (postID == OP) {
$(this).after(' <small>(OP)</small>');
}
});
};
$('div.post.reply').each(showOPLinks);
// allow to work with auto-reload.js, etc.
$(document).on('new_post', function(e, post) {
10 years ago
if ($(post).is('div.post.reply')) {
$(post).each(showOPLinks);
}
else {
$(post).find('div.post.reply').each(showOPLinks);
}
12 years ago
});
});
10 years ago