summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-10-20 13:25:49 -0400
committerEvan Prodromou <evan@controlyourself.ca>2008-10-20 13:25:49 -0400
commitb43af6ad536a1d993675034acf4fe1dc7c0a8011 (patch)
tree2e8ab799eaa2d912599a0ad2e29f6a0b3d3cdb0b /js
parent60f43d0da9dcd9a3d6566b19fdecd0a8be38ac4b (diff)
move update of replyto value to correct area
darcs-hash:20081020172549-5ed1f-9ae91cf6d0af250275921b48831999269fd8d3dd.gz
Diffstat (limited to 'js')
-rw-r--r--js/util.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/util.js b/js/util.js
index b81bfd58d..9c8bab78d 100644
--- a/js/util.js
+++ b/js/util.js
@@ -94,11 +94,11 @@ function doreply(nick,id) {
replyto = "@" + nick + " ";
if ($("#status_textarea").length) {
$("#status_textarea").val(replyto);
+ $("form#status_form input#inreplyto").val(id);
$("#status_textarea").focus();
return false;
}
}
- $("form#status_form input#inreplyto").value = id;
return true;
}