Skip to content

Commit 565e64c

Browse files
committedApr 12, 2023
chore: lint
1 parent 95cdcd3 commit 565e64c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎lib/editor/components/map/EditorMap.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,12 @@ export default class EditorMap extends Component<Props, State> {
125125

126126
// From https://github.com/Leaflet/Leaflet.draw/issues/695#issuecomment-281663243
127127
// Prevents creating a new leaflet draw point on drag
128-
var originalOnTouch = L.Draw.Polyline.prototype._onTouch;
129-
L.Draw.Polyline.prototype._onTouch = function (e) {
130-
if (e.originalEvent.pointerType != "mouse") {
131-
return originalOnTouch.call(this, e);
128+
var originalOnTouch = L.Draw.Polyline.prototype._onTouch
129+
L.Draw.Polyline.prototype._onTouch = function (e) {
130+
if (e.originalEvent.pointerType !== 'mouse') {
131+
return originalOnTouch.call(this, e)
132132
}
133-
};
133+
}
134134
}
135135

136136
componentWillUnmount () {

0 commit comments

Comments
 (0)
Please sign in to comment.