Hide reply creation input text fields until “comment” link is clicked.
[Sone.git] / src / main / resources / templates / index.html
index 3a5bb70..8cbf77e 100644 (file)
@@ -4,6 +4,19 @@
                /* register input field/textarea swap. */
                $(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>