alt c to focus on chat and gritter and chat both now work with aria

This commit is contained in:
John McLear 2015-03-26 16:44:22 +00:00
parent 548cef7018
commit 428b547d24
4 changed files with 13 additions and 2 deletions

View file

@ -3718,6 +3718,13 @@ function Ace2Inner(){
firstEditbarElement.focus();
evt.preventDefault();
}
if ((!specialHandled) && isTypeForSpecialKey && keyCode == 67){
// Alt c focuses on the Chat window
parent.parent.chat.show();
parent.parent.chat.focus();
$(this).blur();
evt.preventDefault();
}
if ((!specialHandled) && isTypeForSpecialKey && keyCode == 8)
{
// "delete" key; in mozilla, if we're at the beginning of a line, normalize now,