move update of replyto value to correct area

darcs-hash:20081020172549-5ed1f-9ae91cf6d0af250275921b48831999269fd8d3dd.gz
This commit is contained in:
Evan Prodromou 2008-10-20 13:25:49 -04:00
parent 60f43d0da9
commit b43af6ad53

View File

@ -94,11 +94,11 @@ function doreply(nick,id) {
replyto = "@" + nick + " "; replyto = "@" + nick + " ";
if ($("#status_textarea").length) { if ($("#status_textarea").length) {
$("#status_textarea").val(replyto); $("#status_textarea").val(replyto);
$("form#status_form input#inreplyto").val(id);
$("#status_textarea").focus(); $("#status_textarea").focus();
return false; return false;
} }
} }
$("form#status_form input#inreplyto").value = id;
return true; return true;
} }