Skip to content

Commit 80503a5

Browse files
lvltearchmoj
andauthored
Fix heatmap/image traces without zsmooth on IOS
Co-authored-by: Mojtaba Samimi <33888540+archmoj@users.noreply.github.com>
1 parent 1bb2b82 commit 80503a5

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() || lib.isIOS()) {
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)