first attempt at fixing dead keys, it cant be this easy can it?
parent
29ab7b9026
commit
b8192fd015
|
@ -3680,6 +3680,11 @@ function Ace2Inner(){
|
|||
stopped = true;
|
||||
}
|
||||
}
|
||||
else if (evt.key === "Dead"){
|
||||
// If it's a dead key we don't want to do any Etherpad behavior.
|
||||
stopped = true;
|
||||
return true;
|
||||
}
|
||||
else if (type == "keydown")
|
||||
{
|
||||
outsideKeyDown(evt);
|
||||
|
|
Loading…
Reference in New Issue