Files
meteor/packages/fastclick
2016-12-30 04:04:05 -10:00
..
2014-08-15 14:35:58 -07:00
2015-05-19 13:50:46 -07:00
2016-12-30 04:04:05 -10:00

fastclick

Source code of released version | Source code of development version


Warning: As of late 2015 most mobile browsers - notably Chrome and Safari - no longer have a 300ms touch delay, so fastclick offers no benefit on newer browsers, and risks introducing bugs into your application. Consider carefully whether you really need to use it.

FastClick is a simple, easy-to-use library for eliminating the 300ms delay between a physical tap and the firing of a click event on mobile browsers. The aim is to make your application feel less laggy and more responsive while avoiding any interference with your current logic.

FastClick is developed by FT Labs, part of the Financial Times.

For more info see the original repo: ftlabs/fastclick.

This package is included by default on all Meteor Phonegap/Cordova apps. If you would like to use Fastclick for mobile web as well, add it to your app directly with meteor add fastclick.

In case you want to disable FastClick for certain elements, you can add the needsclick class as described in the advanced section of the FastClick documentation:

<a class="needsclick">Ignored by FastClick</a>