Bail out of translate3d in Opera

This commit is contained in:
John Firebaugh
2013-04-26 17:46:19 -07:00
parent 99fe5f615d
commit 464b387040
+3 -1
View File
@@ -164,7 +164,9 @@ iD.Map = function(context) {
var transform =
'scale(' + scale + ')' +
'translate3d(' + tX + 'px,' + tY + 'px, 0) ';
(iD.detect().opera ?
'translate(' + tX + 'px,' + tY + 'px)' :
'translate3d(' + tX + 'px,' + tY + 'px, 0)');
supersurface.style(transformProp, transform);
queueRedraw();