mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-09 11:35:47 +00:00
Apply Chrome's accent input workaround in Safari version 10.1.
This commit is contained in:
parent
20732ed571
commit
c2df5dc01c
1 changed files with 1 additions and 1 deletions
|
@ -2292,7 +2292,7 @@ var TextInput = function(parentNode, host) {
|
|||
}
|
||||
// WORKAROUND: Accent keys and Korean keys don't work in Chrome >53.
|
||||
// https://github.com/ajaxorg/ace/issues/3045
|
||||
if (useragent.isChrome >= 53) onInput();
|
||||
if (useragent.isChrome >= 53 || useragent.isSafari >= 10.1) onInput();
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue