mirror of
https://github.com/blasten/turn.js.git
synced 2025-04-06 03:57:41 +08:00
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.
This commit is contained in:
parent
8db4c68a16
commit
0ac4d63c23
2
turn.js
2
turn.js
@ -29,7 +29,7 @@ var has3d,
|
|||||||
|
|
||||||
A90 = PI/2,
|
A90 = PI/2,
|
||||||
|
|
||||||
isTouch = 'Touch' in window,
|
isTouch = 'ontouchstart' in window,
|
||||||
|
|
||||||
events = (isTouch) ? {start: 'touchstart', move: 'touchmove', end: 'touchend'}
|
events = (isTouch) ? {start: 'touchstart', move: 'touchmove', end: 'touchend'}
|
||||||
: {start: 'mousedown', move: 'mousemove', end: 'mouseup'},
|
: {start: 'mousedown', move: 'mousemove', end: 'mouseup'},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user