Skip to content

Commit

Permalink
Revert "Add character composition workaround for Chrome and Safari."
Browse files Browse the repository at this point in the history
This reverts commit 443bcf3.
  • Loading branch information
paulojreis committed Apr 4, 2017
1 parent 443bcf3 commit 5b6aba1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/ace/keyboard/textinput.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,10 +432,6 @@ 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 and Safari >=10.1.
// https://github.com/ajaxorg/ace/issues/3045
// https://github.com/ajaxorg/ace/issues/3257
if (useragent.isChrome >= 53 || useragent.isSafari >= 10.1) onInput();
};


Expand Down

0 comments on commit 5b6aba1

Please sign in to comment.