Revert parts of 8d8cc8a9cced7cc9171cc09ce0fd024145605d70.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 26 Nov 2010 18:50:05 +0000 (19:50 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 26 Nov 2010 18:50:19 +0000 (19:50 +0100)
Of course we still do need the elements, only the click handler was
supposed to go.

src/main/resources/static/javascript/sone.js

index a4ad957..ba78d2c 100644 (file)
@@ -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 {