Skip to content

Commit

Permalink
Chore: Removed extra spaces (panzoom.js)
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorA100 authored Aug 20, 2024
1 parent f232342 commit 0717a2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/js/panzoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'});
}
},

Expand Down

0 comments on commit 0717a2d

Please sign in to comment.