diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-10-20 13:21:17 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-10-20 13:21:17 -0400 |
commit | 1e63fd4a341fc344e3bb4a03b0e8cac068e77c10 (patch) | |
tree | 7f8ebf21b34b922810cf6d47139aaabdf6d615b4 /js/util.js | |
parent | 613b75e7b75021646fd884a49890df5967376da1 (diff) |
more specific selector for updating replies
darcs-hash:20081020172117-5ed1f-29177ae6f4439707b20732cccb83ef12f8478f85.gz
Diffstat (limited to 'js/util.js')
-rw-r--r-- | js/util.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/js/util.js b/js/util.js index 0055c35df..91147b397 100644 --- a/js/util.js +++ b/js/util.js @@ -97,10 +97,8 @@ function doreply(nick,id) { $("#status_textarea").focus(); return false; } - if (id) { - $("#inreplyto").val(id); - } } + $("form#status_form input#inreplyto").val(id); return true; } |