mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
This included removing some internal version constraints. It would be nice if package A could say "use B@2.0.0" (when both have changed), but when they're both in the release, we need to make a release that has a B@2.0.0-rc in it, which doesn't match that constraint. Fortunately, constraints aren't necessary within a release anyway.
fastclick
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>