0
0
mirror of https://github.com/Doodle3D/doodle3d-client.git synced 2024-11-25 10:37:56 +01:00

Fix move/zoom/rotate buttons on android (both chrome and native browser).

Remove reference to undefined variable; remove unneeded log message.
This commit is contained in:
Wouter R 2014-01-15 17:30:11 +01:00
parent e125939db8
commit 97201587c0
3 changed files with 9 additions and 3 deletions

View File

@ -29,6 +29,12 @@
_x = e.originalEvent.pageX - offset.left; _x = e.originalEvent.pageX - offset.left;
_y = e.originalEvent.pageY - offset.top; _y = e.originalEvent.pageY - offset.top;
} }
//android+chrome-specific hack
if (e.originalEvent.changedTouches != undefined) {
_x = e.originalEvent.changedTouches[0].pageX - offset.left;
_y = e.originalEvent.changedTouches[0].pageY - offset.top;
}
} }
var startDownTimer = function() { var startDownTimer = function() {

View File

@ -408,7 +408,7 @@ function onCanvasTouchMove(e) {
// var x = e.touches[0].layerX; // var x = e.touches[0].layerX;
// var y = e.touches[0].layerY; // var y = e.touches[0].layerY;
console.log("f:onCanvasTouchMove >> x,y = "+x+","+y+" , e: " , e); //console.log("f:onCanvasTouchMove >> x,y = "+x+","+y+" , e: " , e);
if (prevPoint.x != -1 || prevPoint.y != -1) { if (prevPoint.x != -1 || prevPoint.y != -1) {
var dist = Math.sqrt(Math.pow((prevPoint.x - x), 2) + Math.pow((prevPoint.y - y), 2)); var dist = Math.sqrt(Math.pow((prevPoint.x - x), 2) + Math.pow((prevPoint.y - y), 2));

View File

@ -17,7 +17,7 @@ function getSavedSketchStatus() {
} }
} }
}).fail(function() { }).fail(function() {
console.log("getSavedSketchStatus failed: ", response); console.log("getSavedSketchStatus failed");
}); });
} }