diff --git a/src/lib/components/Keyboard.ts b/src/lib/components/Keyboard.ts index 158f71d1..9bfb4a40 100644 --- a/src/lib/components/Keyboard.ts +++ b/src/lib/components/Keyboard.ts @@ -1130,8 +1130,7 @@ class SimpleKeyboard { document.addEventListener("mouseup", this.handleMouseUp); document.addEventListener("touchend", this.handleTouchEnd); document.addEventListener("selectionchange", this.handleSelectionChange); - // Reporting old caret pos @ https://github.com/hodgef/simple-keyboard/issues/1868 - //document.addEventListener("select", this.handleSelect); + document.addEventListener("select", this.handleSelect); } }