This commit is contained in:
Francisco Hodge 2021-04-24 17:23:03 -04:00
parent 6d217bdc27
commit a89789df25

View File

@ -1008,6 +1008,7 @@ class SimpleKeyboard {
document.addEventListener("mouseup", this.handleMouseUp); document.addEventListener("mouseup", this.handleMouseUp);
document.addEventListener("touchend", this.handleTouchEnd); document.addEventListener("touchend", this.handleTouchEnd);
document.addEventListener("select", this.handleSelect); document.addEventListener("select", this.handleSelect);
document.addEventListener("selectionchange", this.handleSelect);
} }
} }
@ -1135,6 +1136,7 @@ class SimpleKeyboard {
document.removeEventListener("mouseup", this.handleMouseUp); document.removeEventListener("mouseup", this.handleMouseUp);
document.removeEventListener("touchend", this.handleTouchEnd); document.removeEventListener("touchend", this.handleTouchEnd);
document.removeEventListener("select", this.handleSelect); document.removeEventListener("select", this.handleSelect);
document.removeEventListener("selectionchange", this.handleSelect);
document.onpointerup = null; document.onpointerup = null;
document.ontouchend = null; document.ontouchend = null;
document.ontouchcancel = null; document.ontouchcancel = null;