diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-09 03:24:29 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-09 03:24:29 -0400 |
commit | d31624629e17d1809095389f43fe22f47d8c1d58 (patch) | |
tree | edf63b02f075cdf3544b1240d1f500530067f043 | |
parent | 279cb255c8946f350475975f92a750bc8d220a5d (diff) |
try another tack
darcs-hash:20080709072429-84dde-86bd168e5d70b84cc471c74e349bd4e9a3ba0a70.gz
-rw-r--r-- | js/util.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/util.js b/js/util.js index d0116574b..828915438 100644 --- a/js/util.js +++ b/js/util.js @@ -26,7 +26,7 @@ function doreply(nick) { if (nick.match(rgx_username)) { replyto = "@" + nick + " "; if ($("#status_textarea")) { - $("#status_textarea").value=replyto; + $("#status_textarea").val(replyto); $("#status_textarea").focus(); } } |