Inkbox

Results 1 issues of Inkbox

https://github.com/mdn/dom-examples/blob/master/pointerevents/Pinch_zoom_gestures.html Line 79 of this script should be: `var curDiff = Math.sqrt(Math.pow(evCache[1].clientX - evCache[0].clientX, 2) + Math.pow(evCache[1].clientY - evCache[0].clientY, 2));` Currently line 79 is only calculating the difference between the...