HTML5 touch event with createjs.Touch, getting double events.
My code uses the stagemousedown and stagemousemove events along with other events such as buttons.
I have code to allow createJS to handle touch events:
// Enable touch events on this stage
createjs.Touch.enable(stage, false, true);
// Don't let the stage to automatically prevent default touch events
stage.preventSelection = false;
// And to prevent default events in the stagemousedown I have
event.nativeEvent.preventDefault();
My problem is now any buttons have a double event, (click is fired twice when I press a button).
