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.
9 lines
295 B
Plaintext
9 lines
295 B
Plaintext
var msg = <%= raw @forum_post.body.to_json %>;
|
|
if ($("#forum_post_body").val().length > 0) {
|
|
msg = $("#forum_post_body").val() + "\n\n" + msg;
|
|
}
|
|
$("#forum_post_body").val(msg);
|
|
$("#topic-response").show();
|
|
$("#forum_post_body").get(0).scrollIntoView(false);
|
|
$("#forum_post_body").selectEnd();
|