From dd4758725eefbc4ada57b50d03fe2fb180a8285d Mon Sep 17 00:00:00 2001 From: psychobunny Date: Sat, 4 May 2013 07:01:39 +0000 Subject: [PATCH] fixed bug where events weren't being attached to new posts being parsed in --- public/templates/topic.tpl | 78 +++++++++++++++++++++----------------- 1 file changed, 43 insertions(+), 35 deletions(-) diff --git a/public/templates/topic.tpl b/public/templates/topic.tpl index 7092098e49..18d87b83e7 100644 --- a/public/templates/topic.tpl +++ b/public/templates/topic.tpl @@ -40,24 +40,7 @@ jQuery('document').ready(function() { // join room for this thread - DRY failure, see ajaxify and app.js socket.emit('event:enter_room', 'topic_' + '{topic_id}'); current_room = 'topic_' + '{topic_id}'; -}); - -jQuery('.post_reply').click(function() { - app.open_post_window('reply', "{topic_id}", "{topic_name}"); -}); - -jQuery('.quote').click(function() { - app.open_post_window('quote', "{topic_id}", "{topic_name}"); - - // this needs to be looked at, obviously. only single line quotes work well I think maybe replace all \r\n with > ? - document.getElementById('post_content').innerHTML = '> ' + document.getElementById('content_' + this.id.replace('quote_', '')).innerHTML; -}); - -jQuery('.edit, .delete').each(function() { - var ids = this.id.replace('ids_', '').split('_'), - pid = ids[0], - uid = ids[1]; - + set_up_posts(); }); @@ -72,9 +55,11 @@ socket.on('event:rep_down', function(data) { }); socket.on('event:new_post', function(data) { - var html = templates.prepare(templates['topic'].blocks['posts']).parse(data); + var html = templates.prepare(templates['topic'].blocks['posts']).parse(data), + uniqueid = new Date().getTime(); - jQuery('
').appendTo("#post-container").hide().append(html).fadeIn('slow'); + jQuery('
').appendTo("#post-container").hide().append(html).fadeIn('slow'); + set_up_posts(uniqueid); }); function adjust_rep(value, pid, uid) { @@ -92,19 +77,42 @@ function adjust_rep(value, pid, uid) { } -jQuery('.favourite').click(function() { - var ids = this.id.replace('favs_', '').split('_'), - pid = ids[0], - uid = ids[1]; - - - if (this.children[1].className == 'icon-star-empty') { - this.children[1].className = 'icon-star'; - socket.emit('api:posts.favourite', {pid: pid, room_id: current_room}); - } - else { - this.children[1].className = 'icon-star-empty'; - socket.emit('api:posts.unfavourite', {pid: pid, room_id: current_room}); - } -}) +function set_up_posts(div) { + if (div == null) div = ''; + else div = '#' + div; + + jQuery(div + ' .post_reply').click(function() { + app.open_post_window('reply', "{topic_id}", "{topic_name}"); + }); + + jQuery(div + ' .quote').click(function() { + app.open_post_window('quote', "{topic_id}", "{topic_name}"); + + // this needs to be looked at, obviously. only single line quotes work well I think maybe replace all \r\n with > ? + document.getElementById('post_content').innerHTML = '> ' + document.getElementById('content_' + this.id.replace('quote_', '')).innerHTML; + }); + + jQuery(div + ' .edit, ' + div + ' .delete').each(function() { + var ids = this.id.replace('ids_', '').split('_'), + pid = ids[0], + uid = ids[1]; + + }); + + jQuery(div + ' .favourite').click(function() { + var ids = this.id.replace('favs_', '').split('_'), + pid = ids[0], + uid = ids[1]; + + + if (this.children[1].className == 'icon-star-empty') { + this.children[1].className = 'icon-star'; + socket.emit('api:posts.favourite', {pid: pid, room_id: current_room}); + } + else { + this.children[1].className = 'icon-star-empty'; + socket.emit('api:posts.unfavourite', {pid: pid, room_id: current_room}); + } + }); +} \ No newline at end of file