You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sadly this didn't work for me. In the end I had to assign something like the following to make the gesture come through. It doesn't yet work great on Firefox, but at least iOS and Android work.
varclickSimulator=function(evt){// prevent this from working on Computersif(evt.type!='click'){vartheEvent=document.createEvent('MouseEvents');theEvent.initEvent('click',true,true);evt.target.dispatchEvent(theEvent);evt.stopPropagation();evt.preventDefault();}};$(".mosaic-item").on('tap',clickSimulator);
hey. First of all. great plugin. Thanks for your work.
I noticed though, that ... iOS7 click events don't reach the links within the pages
even on http://stereobit.github.io/dragend/ the links won't get triggered in iOS7.
any idea? Thanks
The text was updated successfully, but these errors were encountered: