mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-08 06:01:22 +00:00
Fix movement calculations.
This commit is contained in:
@@ -864,8 +864,9 @@ Guacamole.Mouse.Touchscreen = function(element) {
|
|||||||
*/
|
*/
|
||||||
function finger_moved(e) {
|
function finger_moved(e) {
|
||||||
var touch = e.touches[0] || e.changedTouches[0];
|
var touch = e.touches[0] || e.changedTouches[0];
|
||||||
return Math.abs(touch.clientX - gesture_start_x) >= guac_touchscreen.clickMoveThreshold
|
var delta_x = touch.clientX - gesture_start_x;
|
||||||
&& Math.abs(touch.clientY - gesture_start_y) >= guac_touchscreen.clickMoveThreshold;
|
var delta_y = touch.clientY - gesture_start_y;
|
||||||
|
return Math.sqrt(delta_x*delta_x + delta_y*delta_y) >= guac_touchscreen.clickMoveThreshold;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user