From 8d251cadf106e55a436d3726c9cbe5b357d4b712 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Tue, 8 Sep 2015 00:31:14 +0200 Subject: [PATCH] After posting we scroll to the bottom without waiting for the new post to be fetched. Fixes issue #28. --- js/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ajax.js b/js/ajax.js index 56f0df5c..1072031d 100644 --- a/js/ajax.js +++ b/js/ajax.js @@ -94,7 +94,7 @@ $(window).ready(function() { highlightReply(post_response.id); window.location.hash = post_response.id; - $(window).scrollTop($('div.post#reply_' + post_response.id).offset().top); + $(window).scrollTop($(document).height()); $(form).find('input[type="submit"]').val(submit_txt); $(form).find('input[type="submit"]').removeAttr('disabled');