From af3ec3f8c720b90095f1f4cff2eb9931d0fcebf2 Mon Sep 17 00:00:00 2001 From: Michael Save Date: Sat, 31 Mar 2012 21:32:09 +1100 Subject: [PATCH] expand.js: inline thread expanding --- js/expand.js | 51 +++++++++++++++++++++++++++++++++++++++++++ templates/thread.html | 2 +- 2 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 js/expand.js diff --git a/js/expand.js b/js/expand.js new file mode 100644 index 00000000..05aece95 --- /dev/null +++ b/js/expand.js @@ -0,0 +1,51 @@ +/* + *expand.js + * https://github.com/savetheinternet/Tinyboard/blob/master/js/expand.js + * + * Released under the MIT license + * Copyright (c) 2012 Michael Save + * + * Usage: + * $config['additional_javascript'][] = 'js/jquery.min.js'; + * $config['additional_javascript'][] = 'js/expand.js'; + * + */ + +$(document).ready(function(){ + if($('div.banner').length != 0) + return; // not index + + $('div.post.op span.omitted').each(function() { + $(this) + .html($(this).text().replace(/Click reply to view\./, 'Click to expand.')) + .find('a').click(function() { + var thread = $(this).parent().parent().parent(); + var id = thread.attr('id').replace(/^thread_/, ''); + $.ajax({ + url: thread.find('p.intro a.post_no:first').attr('href'), + context: document.body, + success: function(data) { + var last_expanded = false; + $(data).find('div.post.reply').each(function() { + if($('#' + $(this).attr('id')).length == 0) { + if(last_expanded) { + $(this).addClass('expanded').insertAfter(last_expanded).before('
'); + } else { + $(this).addClass('expanded').insertAfter(thread.find('div.post:first')).after('
'); + } + last_expanded = $(this); + + } + }); + $('Hide expanded replies.') + .insertAfter(thread.find('span.omitted').css('display', 'none')) + .click(function() { + thread.find('.expanded').remove(); + $(this).prev().css('display', ''); + $(this).remove(); + }); + } + }); + }); + }); +}); diff --git a/templates/thread.html b/templates/thread.html index 1cb9428d..2708b04d 100644 --- a/templates/thread.html +++ b/templates/thread.html @@ -63,7 +63,7 @@

Powered by Tinyboard {{ config.version }} | Tinyboard Copyright © 2010-2012 Tinyboard Development Group

{% for footer in config.footer %}

{{ footer }}

{% endfor %} -
> +