Skip to content

Commit b59962e

Browse files
committed
removes debug output
1 parent 2408c97 commit b59962e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/interact.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,13 @@ function uiInteractZoomArea (evtObj) {
7373
}
7474

7575
function uiInteractZoomIn (evtObj) {
76-
console.log(evtObj)
7776
evtObj.preventDefault()
7877
const relativeStart = mouseDown.relativeStartPos
7978
const relativeEnd = calculateActualMousePos(evtObj)
8079

8180
relativeEnd[0] = Math.max(window.MetricQWebView.graticule.dimensions.x,
8281
Math.min(Math.abs(relativeEnd[0]), window.MetricQWebView.graticule.dimensions.width))
8382

84-
console.log(relativeStart[0], relativeEnd[0])
8583
if (Math.abs(relativeStart[0] - relativeEnd[0]) > 1) {
8684
let posEnd = window.MetricQWebView.graticule.getTimeValueAtPoint(relativeStart)
8785
let posStart = window.MetricQWebView.graticule.getTimeValueAtPoint(relativeEnd)

0 commit comments

Comments
 (0)