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
I'm not sure if I'm missing something, but I tried making an active link within the list element on the demo and it gets ignored on iOS Safari and Chrome (works fine on desktop modern browsers). I also have noticed that if there are multiple 'ul' and 'li' elements within the parent 'li' the scroll chugs and creates a few anomalies (again only on mobile). Any suggestions? I'm not well rehearsed with JavaScript so it could be me.
The text was updated successfully, but these errors were encountered:
I'm having the same issues with the links, and am also not well rehearsed with JavaScript or JQuery. I have noticed that .click() events are also not registering in mobile, which I had hoped would serve as a decent workaround. Any ideas to get links working on mobile?
This is only the touch problem and I really doesn't have time to figure it out in a true way! but I disabled the touch part and it is fine. I did this because I used stroll.js a long time ago on a project and it was fine; version 1.2 has a touch problem! Or update problem ;)
on minified version I set b = false to disable the touch part:
var b = false; /* !!("ontouchstart" in window);*/
in none minified version:
var IS_TOUCH_DEVICE = false; // !!( 'ontouchstart' in window );
this is a quick fix!
I'm not sure if I'm missing something, but I tried making an active link within the list element on the demo and it gets ignored on iOS Safari and Chrome (works fine on desktop modern browsers). I also have noticed that if there are multiple 'ul' and 'li' elements within the parent 'li' the scroll chugs and creates a few anomalies (again only on mobile). Any suggestions? I'm not well rehearsed with JavaScript so it could be me.
The text was updated successfully, but these errors were encountered: