From 8d8cc8a9cced7cc9171cc09ce0fd024145605d70 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Fri, 26 Nov 2010 14:21:32 +0100 Subject: [PATCH] Add click handler to new posts and replies only once. --- src/main/resources/static/javascript/sone.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main/resources/static/javascript/sone.js b/src/main/resources/static/javascript/sone.js index c02e240..a4ad957 100644 --- a/src/main/resources/static/javascript/sone.js +++ b/src/main/resources/static/javascript/sone.js @@ -618,9 +618,6 @@ function loadNewPost(postId) { return false; } }); - newPost = $(data.post.html).addClass("hidden").click(function() { - markPostAsKnown(this); - }); if (firstOlderPost != null) { newPost.insertBefore(firstOlderPost); } else { @@ -649,9 +646,6 @@ function loadNewReply(replyId) { return false; } }); - newReply = $(data.reply.html).addClass("hidden").click(function() { - markPostAsKnown(getPostElement(this)); - }); if (firstNewerReply != null) { newReply.insertBefore(firstNewerReply); } else { -- 2.7.4