mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
Moving to gesture-based event handling
This commit is contained in:
@ -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
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user