I\'m building a Cordova application and click response times are slow.
I found the angular-touch plugin for Angular (which, while designed for Angular 1.2.0, looks like
From this page: the "Angular way" is to .run the FastClick initializer in your Angular JS file. Make sure to load the fastclick.js module before your Angular code.
.run
fastclick.js
HTML:
in app.js:
app.run(function() { FastClick.attach(document.body); });