Hi,

On touchstart and touchmove event, the event object has  touches and
targetTouches properties (see http://bit.ly/Q6uOD), however the
jQuery.Event doesn't seem to copy these properties.

I tried adding them to $.event.props like this:


        $.each(['touches', 'targetTouches'], function(){
                if (!($.inArray($.event.props, this))) {
                        $.event.props.push(this);
                }
        });

But it doesn't seem to work.

The event an event listener received via jQuery hasn't the
targetTouches property even if it's accessible via
event.originalEvent.targetTouches or window.event.targetTouches.

Is there anyway to fix this?

Damien Lebrun

Reply via email to