I have a DIV inside a page element of a sliding menu / navigator. I'm trying to capture Hammer events on this element but am only able to access "touch" events.
var hammer = Hammer(getElementById('myDiv'));
hammer.on('touch swipe', function(e){
console.log(e);
});
Is there something I'm missing, or does Onsen UI set specific things with Hammer that is interfering?