Skip to content

Commit

Permalink
added 'singleTap' event to README
Browse files Browse the repository at this point in the history
  • Loading branch information
drale2k committed Feb 22, 2012
1 parent ef8c73f commit 4b81fef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -213,9 +213,9 @@ $('some selector').tap(function(){ ... });

Single Tap:

(Only use this instead of "tap" if you're using the "doubleTap" event. It it will give you a 250
Only use this instead of "tap" if you're using the "doubleTap" event. It it will give you a 250
ms buffer to be able to differentiate between a single tap and a double tap. Don't use it if you're not
using "doubleTap" since it will cause a 250ms delay, which could lead to a bad user experience.)
using "doubleTap" since it will cause a 250ms delay, which could lead to a bad user experience.

``` js
$('some selector').singleTap(function(){ ... });
Expand Down

0 comments on commit 4b81fef

Please sign in to comment.