lightbox icon indicating copy to clipboard operation
lightbox copied to clipboard

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

Open evanave opened this issue 6 years ago • 1 comments

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

evanave avatar Mar 06 '18 15:03 evanave

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

evanave avatar Mar 06 '18 15:03 evanave