summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-12-28 22:30:12 -0500
committerGitHub <noreply@github.com>2023-12-29 03:30:12 +0000
commitc13ee62b84693346e28741d7f016c6700a2c27d4 (patch)
tree2cf4d708c31ccd9f2c4fe06b4b43b7fbccd0b635
parent39eeed805044388591bdb45a790414495a7bf321 (diff)
Add explicit passive option to touchstart event (#480)
-rw-r--r--ext/js/display/display-resizer.js2
-rw-r--r--ext/js/language/text-scanner.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/js/display/display-resizer.js b/ext/js/display/display-resizer.js
index 8ce7e91a..794398b8 100644
--- a/ext/js/display/display-resizer.js
+++ b/ext/js/display/display-resizer.js
@@ -45,7 +45,7 @@ export class DisplayResizer {
if (this._handle === null) { return; }
this._handle.addEventListener('mousedown', this._onFrameResizerMouseDown.bind(this), false);
- this._handle.addEventListener('touchstart', this._onFrameResizerTouchStart.bind(this), false);
+ this._handle.addEventListener('touchstart', this._onFrameResizerTouchStart.bind(this), {passive: false, capture: false});
}
// Private
diff --git a/ext/js/language/text-scanner.js b/ext/js/language/text-scanner.js
index 9c254e44..aed431d3 100644
--- a/ext/js/language/text-scanner.js
+++ b/ext/js/language/text-scanner.js
@@ -1099,7 +1099,7 @@ export class TextScanner extends EventDispatcher {
_getTouchEventListeners(capture) {
return [
[this._node, 'auxclick', this._onAuxClick.bind(this), capture],
- [this._node, 'touchstart', this._onTouchStart.bind(this), capture],
+ [this._node, 'touchstart', this._onTouchStart.bind(this), {passive: true, capture}],
[this._node, 'touchend', this._onTouchEnd.bind(this), capture],
[this._node, 'touchcancel', this._onTouchCancel.bind(this), capture],
[this._node, 'touchmove', this._onTouchMove.bind(this), {passive: false, capture}],
@@ -1130,7 +1130,7 @@ export class TextScanner extends EventDispatcher {
if (documentElement !== null) {
entries.push([documentElement, 'mousedown', this._onSearchClickMouseDown.bind(this), capture]);
if (this._touchInputEnabled) {
- entries.push([documentElement, 'touchstart', this._onSearchClickTouchStart.bind(this), capture]);
+ entries.push([documentElement, 'touchstart', this._onSearchClickTouchStart.bind(this), {passive: true, capture}]);
}
}
return entries;