lightbox
lightbox copied to clipboard
Swipe Gesture on Mobile - Need a distance threshold on lines 571 and 574 of ekko-lightbox.js
So, you're experiencing a problem?
If you're not sure how to use the lightbox, or are experiencing a problem with it, please ask on StackOverflow - you will most definitely get a faster response time and it leaves this GitHub issues for actual bugs and not support questions.
If you really do think you have a bug, please:
- [ ] Provide a link to your site or a full example
- [ ] Provide screenshots where appropriate
- [ ] Browser name and version
_swipeGesure() {
var swipeThreshold = 50;
if (this._touchendX < this._touchstartX - swipeThreshold) {
return this.navigateRight();
}
if (this._touchendX > this._touchstartX + swipeThreshold) {
return this.navigateLeft();
}
}