We saw this great tutorial from Josh Morony https://www.joshmorony.com/building-an-absolute-drag-directive-in-ionic-2/
and it works great!
We do this
let hammer = new window['Hammer'](this.srcElement); hammer.get('pan').set({ direction: window['Hammer'].DIRECTION_ALL }); hammer.on('pan', (ev) => { if (this.isDragging) { this.onPan(ev); } });
to enable bidrectional pan gestures, but now we can not scroll over the components where we handle pan.
We would like to enable DRAG only after a press of 500ms or something like that.
Have someone an idea, how we can handle DRAG after 500ms and SCROLL together?