From 630d39c1db18db07186e6c38d93cd3ea79d316d0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Fri, 26 Nov 2010 19:50:05 +0100 Subject: [PATCH] Revert parts of 8d8cc8a9cced7cc9171cc09ce0fd024145605d70. Of course we still do need the elements, only the click handler was supposed to go. --- src/main/resources/static/javascript/sone.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/static/javascript/sone.js b/src/main/resources/static/javascript/sone.js index a4ad957..ba78d2c 100644 --- a/src/main/resources/static/javascript/sone.js +++ b/src/main/resources/static/javascript/sone.js @@ -618,6 +618,7 @@ function loadNewPost(postId) { return false; } }); + newPost = $(data.post.html).addClass("hidden"); if (firstOlderPost != null) { newPost.insertBefore(firstOlderPost); } else { @@ -646,6 +647,7 @@ function loadNewReply(replyId) { return false; } }); + newReply = $(data.reply.html).addClass("hidden"); if (firstNewerReply != null) { newReply.insertBefore(firstNewerReply); } else { -- 2.7.4