From: David ‘Bombe’ Roden Date: Fri, 26 Nov 2010 11:50:14 +0000 (+0100) Subject: Add click-to-mark-known function to all posts and replies. X-Git-Tag: 0.3.1-RC2~3 X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=eb8d6cb360fd57eeccc692f631f6b9b7d8f41729;p=Sone.git Add click-to-mark-known function to all posts and replies. --- diff --git a/src/main/resources/static/javascript/sone.js b/src/main/resources/static/javascript/sone.js index 4b60dd9..c02e240 100644 --- a/src/main/resources/static/javascript/sone.js +++ b/src/main/resources/static/javascript/sone.js @@ -497,6 +497,11 @@ function ajaxifyPost(postElement) { }); }); + /* mark everything as known on click. */ + $(postElement).click(function() { + markPostAsKnown(this); + }); + /* hide reply input field. */ $(postElement).find(".create-reply").addClass("hidden"); } @@ -526,6 +531,11 @@ function ajaxifyReply(replyElement) { }); })(replyElement); addCommentLink(getPostId(replyElement), replyElement, $(replyElement).find(".reply-status-line .time")); + + /* mark post and all replies as known on click. */ + $(replyElement).click(function() { + markPostAsKnown(getPostElement(replyElement)); + }); } /**