mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
10 lines
362 B
JavaScript
10 lines
362 B
JavaScript
|
u(".comment-reply").on("click", function(e) {
|
||
|
let inputbox = u("#write textarea");
|
||
|
let comment = u(e.target).closest(".post");
|
||
|
let authorId = comment.data("owner-id");
|
||
|
let authorNm = u(".post-author > a > b", comment.first()).text().trim();
|
||
|
|
||
|
inputbox.text("[id" + authorId + "|" + authorNm + "], ");
|
||
|
inputbox.trigger("focusin");
|
||
|
});
|