X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Ftemplates%2Findex.html;h=c4c251ab31b5111311ba58d77764fe113e1b2aaa;hb=b77878b1b8c125b0a0908a9cc730219eaf643841;hp=cb435cac0f81e4ed78d8e52bd92acedf2101ef8b;hpb=d7be09f25c86e5644e2352f0e336a4ea75c30f53;p=Sone.git diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index cb435ca..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)); + }); }); }); @@ -55,9 +58,9 @@
<%= Page.Index.PostList.Text.NoPostYet|l10n|html>
<%/foreach> - +

<%= Page.Index.AddSone.Title|l10n|html>

- +
<%= Page.Index.AddSone.Description|l10n|html>