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
2018-11-05 23:12:18 +00:00

8 lines
246 B
JavaScript

function replyTo(imageId, commentId, userId) {
var box = $("#comment_on_"+imageId);
var text = "[url=site://post/view/"+imageId+"#c"+commentId+"]@"+userId+"[/url]: ";
box.focus();
box.val(box.val() + text);
$("#c"+commentId).highlight();
}