Talk the guys! My question is this: Why are these touch events not being recognized when I tap the DOM element, or when I leave it?
var canvasControlsHUD = document.getElementById("canvasControlsHUD");
canvasControlsHUD.addEventListener('touchenter',function(){
alert('Entered!');
},false);
canvasControlsHUD.addEventListener('touchleave',function(){
alert('Left!');
},false);
Only touchMove works.
canvasControlsHUD.addEventListener('touchmove',function(){
alert('Moved!');
},false);