From e9227a9bc1cfe3d22246f115325454682b0e7ea1 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Wed, 26 Feb 2020 19:27:20 +0100 Subject: [PATCH] Fix typo in trackpad timeout --- src/ol/interaction/MouseWheelZoom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/interaction/MouseWheelZoom.js b/src/ol/interaction/MouseWheelZoom.js index f782af739d..8885149af4 100644 --- a/src/ol/interaction/MouseWheelZoom.js +++ b/src/ol/interaction/MouseWheelZoom.js @@ -222,7 +222,7 @@ class MouseWheelZoom extends Interaction { } view.beginInteraction(); } - this.trackpadTimeoutId_ = setTimeout(this.endInteraction_.bind(this), this.timeoutId_); + this.trackpadTimeoutId_ = setTimeout(this.endInteraction_.bind(this), this.timeout_); view.adjustZoom(-delta / this.deltaPerZoom_, this.lastAnchor_); this.startTime_ = now; return false;