From d1072d0a88357a1928790f51cd454a2ac8a47917 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Wed, 13 Jan 2016 10:10:35 +0100 Subject: [PATCH] Remove touchAction:none as we're already calling preventDefault() in selectstart, dragstart Closes #686. --- src/view/View.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/view/View.js b/src/view/View.js index 5067c657..7efc710c 100644 --- a/src/view/View.js +++ b/src/view/View.js @@ -44,10 +44,6 @@ var View = Base.extend(Emitter, /** @lends View# */{ var none = 'none'; DomElement.setPrefixed(element.style, { userSelect: none, - // This makes the element blocking in IE10+ - // You could experiment with the value, see this issue: - // https://github.com/EightMedia/hammer.js/issues/241 - touchAction: none, touchCallout: none, contentZooming: none, userDrag: none,