Prevent page zoom on IE Edge

The deprecated msTouchAction property was removed in IE Edge.
This commit is contained in:
Frederic Junod
2015-09-14 13:38:29 +02:00
parent 32c776ba9f
commit 758118e00d

View File

@@ -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');
}