From f2427ca3920147b294f07f58aadcf95cb70447a9 Mon Sep 17 00:00:00 2001 From: czaks Date: Sun, 4 Aug 2013 00:15:56 -0400 Subject: [PATCH] ukko: finally fixed that post (du|multi)plication problem --- templates/themes/ukko/ukko.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/themes/ukko/ukko.js b/templates/themes/ukko/ukko.js index 2c5989ab..d8693db3 100644 --- a/templates/themes/ukko/ukko.js +++ b/templates/themes/ukko/ukko.js @@ -79,7 +79,10 @@ $(document).ready(function() { cache.push(page); $(data).find('div[id*="thread_"]').each(function() { - $('form[name="postcontrols"]').prepend($(this).css('display', 'none').attr("data-cached", "yes").attr('data-board', overflow[0].board)); + var checkout = $(this).attr('id').replace('thread_', ''); + if ($('div#thread_' + checkout + '[data-board="' + overflow[0].board + '"]').length == 0) { + $('form[name="postcontrols"]').prepend($(this).css('display', 'none').attr("data-cached", "yes").attr('data-board', overflow[0].board)); + } }); thread = $('div#thread_' + overflow[0].id + '[data-board="' + overflow[0].board + '"][data-cached="yes"]');