Skip to content

Commit 7dd3b68

Browse files
committed
Fall back to legacy rendering of images traces for IE
1 parent 4f807c5 commit 7dd3b68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/traces/image/plot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = function plot(gd, plotinfo, cdimage, imageLayer) {
2323
var xa = plotinfo.xaxis;
2424
var ya = plotinfo.yaxis;
2525

26-
var supportsPixelatedImage = !Lib.isIOS() && !Lib.isSafari() && !gd._context._exportedPlot;
26+
var supportsPixelatedImage = !Lib.isIOS() && !Lib.isSafari() && !Lib.isIE && !gd._context._exportedPlot;
2727

2828
Lib.makeTraceGroups(imageLayer, cdimage, 'im').each(function(cd) {
2929
var plotGroup = d3.select(this);

0 commit comments

Comments
 (0)