From 40cd6f729062a3bc72bdc36ae6efee6bc9411fa5 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Wed, 7 May 2014 13:48:06 -0500 Subject: [PATCH] feat(touch-action): add touch-action: manipulation IE supports `-ms-touch-action: manipulation`, and `touch-action` is making it through the standards process. --- scss/_scaffolding.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scss/_scaffolding.scss b/scss/_scaffolding.scss index adb0b57949..070ed83922 100644 --- a/scss/_scaffolding.scss +++ b/scss/_scaffolding.scss @@ -10,6 +10,11 @@ @include box-sizing(border-box); } +html { + -ms-touch-action: manipulation; + touch-action: manipulation; +} + body, .ionic-body { @include touch-callout(none);