Files
danbooru/app/views/forum_posts/new.js.erb
2013-04-28 00:04:52 -07:00

11 lines
334 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();
$('html, body').animate({
scrollTop: $("#forum_post_body").offset().top - 100
}, 500);
$("#forum_post_body").selectEnd();