From ad06d3b91567c10d039fdd9c96858c565f8bf70b Mon Sep 17 00:00:00 2001 From: Nicolas Coden Date: Wed, 10 Oct 2018 19:31:51 +0200 Subject: [PATCH] docs: fix various typo in Touch methods and Reveal tests (v6.5) This is a patch of 6200d17 (#11430) for v6.5. --- js/foundation.util.touch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/foundation.util.touch.js b/js/foundation.util.touch.js index a50f3c01e..33e42fe48 100644 --- a/js/foundation.util.touch.js +++ b/js/foundation.util.touch.js @@ -19,7 +19,7 @@ function onTouchEnd(e) { this.removeEventListener('touchmove', onTouchMove); this.removeEventListener('touchend', onTouchEnd); - // If the touch did not moved, consider it as a "tap" + // If the touch did not move, consider it as a "tap" if (!didMoved) { var tapEvent = $.Event('tap', startEvent || e); $(this).trigger(tapEvent); -- 2.47.2