This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/comment/script.js

9 lines
259 B
JavaScript
Raw Normal View History

2018-11-05 22:59:53 +00:00
function replyTo(imageId, commentId, userId) {
2023-12-30 13:47:02 +00:00
var box = document.getElementById("comment_on_"+imageId);
2018-11-05 22:59:53 +00:00
var text = "[url=site://post/view/"+imageId+"#c"+commentId+"]@"+userId+"[/url]: ";
box.focus();
2023-12-30 13:47:02 +00:00
box.value += text;
2018-11-05 22:59:53 +00:00
$("#c"+commentId).highlight();
}