Apply Chrome's accent input workaround in Safari version 10.1.

This commit is contained in:
Paulo Reis 2017-04-03 16:25:22 +01:00
parent 20732ed571
commit c2df5dc01c

View file

@ -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();
};