Add 'reply on comment' code

This commit is contained in:
Max Kostikov 2019-05-01 06:24:58 +02:00
parent 9af8a1d30c
commit c340416c94

View File

@ -1148,6 +1148,16 @@ function doprofilelike(ident, verb) {
$.get('like/' + ident + '?verb=' + verb, function() { window.location.href=window.location.href; });
}
function doreply(parent, ident, owner, hint) {
var form = $('#comment-edit-form-' + parent.toString());
form.find('input[name=parent]').val(ident);
var i = form.find('button[type=submit]');
var btn = i.html().replace(/<[^>]*>/g, '').trim();
i.html('<i class="fa fa-reply" ></i> ' + btn);
i.prop('title', hint);
form.find('textarea').val("@{" + owner + "}\n");
$('#comment-edit-text-' + parent.toString()).focus();
}
function dropItem(url, object) {