From: Nicolas Coden Date: Wed, 10 Oct 2018 17:31:51 +0000 (+0200) Subject: docs: fix various typo in Touch methods and Reveal tests (v6.5) X-Git-Tag: v6.5.0-rc.4^2~6^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11531%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git docs: fix various typo in Touch methods and Reveal tests (v6.5) This is a patch of 6200d17 (#11430) for v6.5. --- 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);