forum posts: fix the "post reply" link scrolling to top of page.

Fix regression in 6fbca01a2.

Also make it so the "reply" link automatically inserts the cursor into
the reply box. Do this for both forum posts and comments. Before it only
did this when quoting a post, not when creating a new post.
This commit is contained in:
evazion
2022-02-03 14:08:16 -06:00
parent 2dfec29da7
commit 280885e8e8
3 changed files with 4 additions and 2 deletions

View File

@@ -16,6 +16,7 @@ class CommentComponent {
var $form = $(e.target).closest("div.new-comment").find("form");
$form.show();
$form[0].scrollIntoView(false);
$form.find("textarea").selectEnd();
e.preventDefault();
}