From 758118e00dc7d6e8e6df3eb5579e91f4e3f1e979 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Mon, 14 Sep 2015 13:38:29 +0200 Subject: [PATCH] Prevent page zoom on IE Edge The deprecated msTouchAction property was removed in IE Edge. --- src/ol/map.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ol/map.js b/src/ol/map.js index c4697c633d..13c5efccbf 100644 --- a/src/ol/map.js +++ b/src/ol/map.js @@ -267,6 +267,7 @@ ol.Map = function(options) { this.viewport_.style.height = '100%'; // prevent page zoom on IE >= 10 browsers this.viewport_.style.msTouchAction = 'none'; + this.viewport_.style.touchAction = 'none'; if (ol.has.TOUCH) { goog.dom.classlist.add(this.viewport_, 'ol-touch'); }