diff --git a/services/web/public/js/ace-1.2.5/ace.js b/services/web/public/js/ace-1.2.5/ace.js index 2b601cc9b9..89bef3543d 100644 --- a/services/web/public/js/ace-1.2.5/ace.js +++ b/services/web/public/js/ace-1.2.5/ace.js @@ -2283,6 +2283,9 @@ var TextInput = function(parentNode, host) { if (e.type == "compositionend" && c.range) { host.selection.setRange(c.range); } + // WORKAROUND: Accent keys and Korean keys don't work in Chrome >53. + // https://github.com/ajaxorg/ace/issues/3045 + if (useragent.isChrome >= 53) onInput(); };