Hide reply creation input text fields until “comment” link is clicked.
[Sone.git] / src / main / resources / templates / index.html
index 579281b..8cbf77e 100644 (file)
@@ -5,6 +5,18 @@
                $(document).ready(function() {
                        registerInputTextareaSwap("#sone input.createpost", "What are you doing?");
                        registerInputTextareaSwap("#sone input.create-reply", "Write a Reply…");
+
+                       /* hide all the “create reply” forms until a link is clicked. */
+                       $("#sone .post").each(function() {
+                               postId = $(this).attr("id");
+                               (function(postId) {
+                                       commentElement = $("<div>Comment</div>").addClass("show-reply-form").click(function() {
+                                               $("#sone .post#" + postId + " .create-reply").removeClass("hidden");
+                                       });
+                               })(postId);
+                               $(this).find(".create-reply").addClass("hidden");
+                               $(this).find(".status-line .time").after(commentElement);
+                       });
                });
        </script>