Moving to gesture-based event handling

This commit is contained in:
Max Lynch
2013-08-26 15:53:57 -05:00
parent 8a8dab2598
commit f6b91c33e3
5 changed files with 402 additions and 130 deletions

View File

@ -12,3 +12,10 @@ window.FM.on('tap', function(e) {
event: e
});
});
window.FM.on('touch', function(e) {
console.log('GOT TOUCH', e);
logEvent({
type: 'touch',
event: e
});
});