slideout
slideout copied to clipboard
Slide opens when zooming / pinching on phone
Hey & thanks for this great library!
When zooming in on something on a phone (like an image), the slide opens automatically on our site ( www.Saburly.com ) which destroys the UX. Are you experiencing the same issue & any ideas on how to solve it?
I'm running into this too, did you find a solution @Bobeta?
Try this meta tag; <meta name="viewport" content="width=device-width, user-scalable=no" />
+1
found this and works greate :
panel.addEventListener('touchstart', function(eve) {
let offset = eve.touches[0].pageX;
if (slideout._orientation !== 1) {
offset = window.innerWidth - offset;
}
slideout._preventOpen = slideout._preventOpen || (offset > slideout._tolerance && !slideout.isOpen());
});