From 0ac4d63c232182ab3b796795f2be48c5b983291e Mon Sep 17 00:00:00 2001 From: William Ge Date: Mon, 4 Jun 2012 22:14:56 +0800 Subject: [PATCH] I tried it in chrome 19.0.1055.1 dev-m with `--enable-touch-events` in window7, but isTouch was always false because no `Touch` in window. So I think it cloud be better to use `ontouchstart` to check this is a touchpad or not. --- turn.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turn.js b/turn.js index 9bcd3ca..d6feac9 100644 --- a/turn.js +++ b/turn.js @@ -29,7 +29,7 @@ var has3d, A90 = PI/2, - isTouch = 'Touch' in window, + isTouch = 'ontouchstart' in window, events = (isTouch) ? {start: 'touchstart', move: 'touchmove', end: 'touchend'} : {start: 'mousedown', move: 'mousemove', end: 'mouseup'},