Fix so input field (e.g. search box) does not loose focus on list load (#1490455)

pull/315/head
Aleksander Machniak 9 years ago
parent ca7fc75bec
commit 14693832b2

@ -27,6 +27,7 @@ CHANGELOG Roundcube Webmail
- Fix removing signature when switching to identity with an empty sig in HTML mode (#1490470)
- Disable links list generation on html-to-text conversion of identities or composed message (#1490437)
- Fix "washing" of style elements wrapped into many lines
- Fix so input field (e.g. search box) does not loose focus on list load (#1490455)
RELEASE 1.1.2
-------------

@ -7524,7 +7524,7 @@ function rcube_webmail()
}
this.enable_command('set-listmode', this.env.threads && !is_multifolder);
if (list.rowcount > 0)
if (list.rowcount > 0 && !$(document.activeElement).is('input,textarea'))
list.focus();
this.msglist_select(list);
}
@ -7540,7 +7540,7 @@ function rcube_webmail()
this.enable_command('search-create', this.env.source == '');
this.enable_command('search-delete', this.env.search_id);
this.update_group_commands();
if (this.contact_list.rowcount > 0)
if (this.contact_list.rowcount > 0 && !$(document.activeElement).is('input,textarea'))
this.contact_list.focus();
this.triggerEvent('listupdate', { folder:this.env.source, rowcount:this.contact_list.rowcount });
}

Loading…
Cancel
Save