I'm writing a game, so it requires I tap more then a few times every 300ms. I already have fastclick.js and it works, however I cannot tap more then once in a 300ms period.
For example I'll tap once, and it immediately reacts, but if I tap again before the 300ms is up, the event is not fired.
Fast Click:
//remove 300ms delay on mobile
FastClick.attach(document.body);
My event:
//when the game is clicked
window.onclick = function(e){
if(e.x > window.innerWidth/2){
move('right');
} else {
move('left');
}
}