Can I have mobile gestures like swipe, tap, pinch etc in the Backbone.js View events? To be more specific following is my code.
Backbone.View.extend({
initialize:function(){
//initialization
},
Events:{
"swipe-left #homeBtn":"homeSwipe"
},
homeSwipe:function(){
alert("Event Swipe left triggered!");
}
});
Can I have the mobile gestures like swipe, swipe-left/right, pinch, tap etc to work with backbone.js?