From: Brion Vibber Date: Fri, 11 Mar 2011 01:44:17 +0000 (-0800) Subject: Focus in textarea when popping up the status tab X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b89b89ce895322cea666cd472b672184611a89cb;p=quix0rs-gnu-social.git Focus in textarea when popping up the status tab --- diff --git a/js/util.js b/js/util.js index 2c8438e62a..4ff2b661fe 100644 --- a/js/util.js +++ b/js/util.js @@ -1297,7 +1297,8 @@ var SN = { // StatusNet .find('.ajax-notice').each(function() { var form = $(this); SN.Init.NoticeFormSetup(form); - }); + }) + .find('textarea:first').focus(); } },