From 75a553b37c0a7de8bc1ae908e917847410f245ca Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Tue, 24 Sep 2019 16:58:41 +0200 Subject: [PATCH] Don't use vendor prefixes for the transform property We are already not using the prefixes in other part of the library. For example: https://github.com/openlayers/openlayers/blob/v6.0.0-beta.15/src/ol/renderer/canvas/TileLayer.js#L356 --- src/ol/control/OverviewMap.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ol/control/OverviewMap.js b/src/ol/control/OverviewMap.js index 6a3de53aae..0aaaf3969d 100644 --- a/src/ol/control/OverviewMap.js +++ b/src/ol/control/OverviewMap.js @@ -463,8 +463,6 @@ class OverviewMap extends Control { box.style.width = width + 'px'; box.style.height = height + 'px'; const transform = 'rotate(' + rotation + 'rad)'; - box.style.msTransform = transform; - box.style.webkitTransform = transform; box.style.transform = transform; } }