From c29728834223aadeff76044e439cfe086cc4f35d Mon Sep 17 00:00:00 2001 From: M Alix Date: Wed, 21 May 2014 02:07:53 -0400 Subject: [PATCH] Fixes new Chrome-35 and IE10 (touch-action) See: https://github.com/EightMedia/hammer.js/wiki/How-to-fix-Chrome-35--and-IE10--scrolling-(touch-action) http://docs.webplatform.org/wiki/css/properties/touch-action --- scss/_scaffolding.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/_scaffolding.scss b/scss/_scaffolding.scss index c939b0da4e..880ec872b4 100644 --- a/scss/_scaffolding.scss +++ b/scss/_scaffolding.scss @@ -12,8 +12,8 @@ html { overflow: hidden; - -ms-touch-action: none; - touch-action: none; + -ms-touch-action: pan-y; + touch-action: pan-y; } body,