Disabled textarea focus for conversation page since most entrances to

this page is with 'in context' link (which includes a fragment
identifier)
This commit is contained in:
Sarven Capadisli 2009-07-02 21:29:03 +00:00
parent a9c83b064f
commit bb404c9be2
1 changed files with 3 additions and 2 deletions

View File

@ -49,8 +49,9 @@ $(document).ready(function(){
// run once in case there's something in there
counter();
// set the focus
$("#notice_data-text").focus();
if($('body')[0].id != 'conversation') {
$("#notice_data-text").focus();
}
}
// XXX: refactor this code