Skip to content

Instantly share code, notes, and snippets.

@tvandervossen
Created November 7, 2011 10:04
Show Gist options
  • Save tvandervossen/1344596 to your computer and use it in GitHub Desktop.
Save tvandervossen/1344596 to your computer and use it in GitHub Desktop.
Multitouch recognizer event binding
$('.tap').recognize('tap').bind(
'touchstart touchenter', function() {
$(this).addClass('active');
}).bind(
'touchleave touchend touchcancel', function() {
$(this).removeClass('active');
}).bind(
'tap', function() {
log('Tapped');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment