Gizrah
Gizrah
This snippet is a bit of a workaround: window.onorientationchange = function() { window.location.reload(); }; but it'd be awesome if Columnizer had a built-in update and/or remove command
Hi, thanks for replying so quickly! Unfortunately there’s no such thing as a native event for long press from what I’ve found so far. There’s four options: touchstart, touchmove, touchcancel...
No, the touch event doesn’t even have a clientY/X param. So this was the next, and seemingly only available, thing.
That’s odd, I tested it on my iPad. I’ll have to look into it more to answer your questions.
I'm going to see if I can use TouchEvent instead of the current MouseEvent and test it on several android devices, ranging from 4.4.1 to 7. Or whatever is on...
I've implemented the TouchEvent now, and cancelled out the touchmove event. However. I noticed that there's an obvious drag delay now only on the place with the touchmove hostbind, but...
After some serious testing across devices, I've noticed excessive inconsistencies among the different devices. Android: Seems to ignore touchmove completely, instead registers a touchcancel on move, and fires the the...
I'll pick this up at a later date, when my current project is on the production environment. I can .. ehm .. sneak work on this in the meantime. Thanks...