touche
touche copied to clipboard
Effortlessly re-map click events to touch events on touchscreen UIs
Hi! Does this library have a TypeScript .d.ts file associated with it so I can use it in a TypeScript project?
Would love to pull this in through npm! :)
Does it work on inline onclick="myfunction();" ? Can't seem to test how your script works...
Take a look at http://stackoverflow.com/a/25727560/3791179 The way the `click` event works is that if you start and end your click in the same place, the `click` event will fire. If...
I've noticed a very wide spread problem with touch events on some devices. It appears with every touch event library (like this one) I've tested so far as well as...
`var isTouch = 'ontouchstart' in window || 'msmaxtouchpoints' in window.navigator;` `isTouch == true;` Tested on Firefox 40 & 41, Mac OSX Yosemite
Will you update the readme to explain how this is different than fastclick.js? Thanks :)
Touch event work one time on each element http://jsfiddle.net/k9sLzyas/
At the end of user scrolling a `click` event gets fired due to the way touche works (`touchend`)
When using the jQuery implementation of this library e.g. ``` // or with jQuery $('.myButtons').on('click', handleClicks); ``` The problem addressed in https://github.com/benhowdle89/touche/pull/2 still exists. A device with a mouse that...