From 9e8ae6a1e79c51baeca1063810ad96dadeab714d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 5 Sep 2008 01:08:24 -0400 Subject: [PATCH] set focus to status text area darcs-hash:20080905050824-84dde-6a58a72c28d79cc5b754ee0498fcb3dadccd555a.gz --- js/util.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/util.js b/js/util.js index 2b772fcac0..7f7ca238d8 100644 --- a/js/util.js +++ b/js/util.js @@ -48,6 +48,9 @@ $(document).ready(function(){ // run once in case there's something in there counter(); + + // set the focus + $("#status_textarea").focus(); } });