From 0717a2d324f2cfb0d1ef222a4daadbea44ff8e2b Mon Sep 17 00:00:00 2001 From: IgorA100 Date: Tue, 20 Aug 2024 13:07:00 +0300 Subject: [PATCH] Chore: Removed extra spaces (panzoom.js) --- web/js/panzoom.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/js/panzoom.js b/web/js/panzoom.js index b450d5969..d8034ad83 100644 --- a/web/js/panzoom.js +++ b/web/js/panzoom.js @@ -177,9 +177,9 @@ var zmPanZoom = { setTouchAction: function(el) { const currentScale = el.getScale().toFixed(1); if (currentScale == 1) { - el.setOptions({ touchAction: 'manipulation' }); + el.setOptions({touchAction: 'manipulation'}); } else { - el.setOptions({ touchAction: 'none' }); + el.setOptions({touchAction: 'none'}); } },