From ce7146121f5a61e1a4144ad2eb7d7a60ae9304b3 Mon Sep 17 00:00:00 2001 From: Hyunje Jun Date: Tue, 18 Oct 2016 10:18:55 +0900 Subject: [PATCH] Set touch-action to auto Resolve #480. --- src/css/mixins.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/css/mixins.scss b/src/css/mixins.scss index 135e3f6..ab9c455 100644 --- a/src/css/mixins.scss +++ b/src/css/mixins.scss @@ -42,8 +42,8 @@ // Layout and theme mixin @mixin ps-container($theme) { - -ms-touch-action: none; - touch-action: none; + -ms-touch-action: auto; + touch-action: auto; overflow: hidden !important; -ms-overflow-style: none;