Merge branch 'master' of git://github.com/ericdrowell/KineticJS

This commit is contained in:
Eric Rowell 2014-03-27 22:32:26 -07:00
commit 8bdfc1215b

View File

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