ashleydw / lightbox

A lightbox gallery plugin for Bootstrap
http://ashleydw.github.io/lightbox
MIT License
1.85k stars 1.31k forks source link

Swipe Gesture on Mobile - Need a distance threshold on lines 571 and 574 of ekko-lightbox.js #291

Open evanave opened 6 years ago

evanave commented 6 years ago

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:

evanave commented 6 years ago
        _swipeGesure() {
            var swipeThreshold = 50;
            if (this._touchendX < this._touchstartX - swipeThreshold) {
                return this.navigateRight();
            }
            if (this._touchendX > this._touchstartX + swipeThreshold) {
                return this.navigateLeft();
            }
        }