Actually scroll to the comment box.

This commit is contained in:
Roger Braun 2013-08-18 18:53:19 +02:00
parent 867efeb80f
commit 059521b0aa

View file

@ -9,7 +9,7 @@ app.views.SinglePostActions = app.views.Feedback.extend({
focusComment: function() {
$('.comment_box').focus();
$("html, body").animate({ scrollTop: $(document).height()-$(window).height() }); // Go to the bottom.
$('html,body').animate({scrollTop: $('.comment_box').offset().top - ($('.comment_box').height() + 20)});
return false;
}