Enhance all post and reply delete buttons.
[Sone.git] / src / main / resources / templates / include / head.html
index fb0f546..9528ecd 100644 (file)
                });
        </script>
 
+       <script language="javascript">
+               /* replace all “delete” buttons with javascript. */
+               $(document).ready(function() {
+                       $("#sone .post").each(function() {
+                               postId = $(this).attr("id");
+                               enhanceDeletePostButton("#sone .post#" + postId + " > .status-line .delete button", postId);
+                               (function(postId) {
+                                       $("#sone .post#" + postId + " .reply").each(function() {
+                                               replyId = $(this).attr("id");
+                                               (function(postId, reply, replyId) {
+                                                       reply.find(".delete button").each(function() {
+                                                               enhanceDeleteReplyButton("#sone .post#" + postId + " .reply#" + replyId + " .delete button", replyId);
+                                                       })
+                                               })(postId, $(this), replyId);
+                                       });
+                               })(postId);
+                       });
+               });
+       </script>
+
        <div id="main">
 
                <div id="profile" class="<%ifnull currentSone>offline<%else>online<%/if>">