wikipoints/public/js/comment.js

16 lines
280 B
JavaScript

function reply(id, nick)
{
$('#answerTo').val(id);
$('#replyGoToComment').attr('href', '#comment'+id);
$('#replyNick').text(nick);
$('#reply').show();
$('#commentFormTextarea').focus();
return false;
}
function noReply()
{
$('#answerTo').val(0);
$('#reply').hide(200);
}