mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 15:36:16 -04:00
alt c to focus on chat and gritter and chat both now work with aria
This commit is contained in:
parent
548cef7018
commit
428b547d24
4 changed files with 13 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue