Skip to content

Commit 1bb2b82

Browse files
lvltealexcjohnson
andauthored
Fix heatmap/image traces without zsmooth on IOS
Co-authored-by: Alex Johnson <alex@plot.ly>
1 parent 9467b44 commit 1bb2b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/supports_pixelated_image.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function supportsPixelatedImage() {
1515
if(_supportsPixelated !== null) { // only run the feature detection once
1616
return _supportsPixelated;
1717
}
18-
if(Lib.isIE() || Lib.isSafari()) {
18+
if(Lib.isIE() || Lib.isSafari() || lib.isIOS()) {
1919
// NB. Safari passes the test below but the final rendering is not pixelated
2020
_supportsPixelated = false;
2121
} else {

0 commit comments

Comments
 (0)