From b77878b1b8c125b0a0908a9cc730219eaf643841 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Mon, 18 Oct 2010 20:27:08 +0200 Subject: [PATCH] =?utf8?q?Fix=20=E2=80=9Ccomment=E2=80=9D=20link=20for=20p?= =?utf8?q?osts=20with=20replies.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/main/resources/templates/index.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 3955d3b..c4c251a 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -9,8 +9,8 @@ /* hide all the “create reply” forms until a link is clicked. */ $("#sone .post").each(function() { postId = $(this).attr("id"); - (function(postId) { - commentElement = $("
Comment
").addClass("show-reply-form").click(function() { + commentElement = (function(postId) { + var commentElement = $("
Comment
").addClass("show-reply-form").click(function() { replyElement = $("#sone .post#" + postId + " .create-reply"); replyElement.removeClass("hidden"); replyElement.removeClass("light"); @@ -25,9 +25,12 @@ })(replyElement); replyElement.find("input.reply-input").focus(); }); + return commentElement; })(postId); $(this).find(".create-reply").addClass("hidden"); - $(this).find(".status-line .time").after(commentElement); + $(this).find(".status-line .time").each(function() { + $(this).after(commentElement.clone(true)); + }); }); }); -- 2.7.4