Merge pull request #865 from binhqx/patch-1

Update Stage.js
This commit is contained in:
Eric Rowell 2014-03-27 22:24:37 -07:00
commit 3abf84a9b7

View File

@ -597,7 +597,7 @@
// touch events // touch events
if(evt.touches !== undefined) { if(evt.touches !== undefined) {
// currently, only handle one finger // currently, only handle one finger
if (evt.touches.length === 1) { if (evt.touches.length > 0) {
touch = evt.touches[0]; touch = evt.touches[0];