From 8266d90e334e829d96712b855b8403b9efb37de3 Mon Sep 17 00:00:00 2001 From: Gordon Anderson Date: Thu, 12 Feb 2015 22:51:16 +0700 Subject: [PATCH] FIX: Repositioning in the DOM of the moderation message due to changing the comments to display: table-cell layout --- javascript/commenting.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/commenting.js b/javascript/commenting.js index a49e1a0..4f46d6b 100644 --- a/javascript/commenting.js +++ b/javascript/commenting.js @@ -66,7 +66,7 @@ setTimeout(function() {msg.fadeOut(3000);},2000); } else { // a reply - newcomment.prepend(msg); + newcomment.parent().prepend(msg); $('body,html').animate({ scrollTop: newcomment.offset().top - 30 }, 200);