Skip to content

Commit 80230ca

Browse files
committed
Merge pull request #4235 from killahwave/fixIEProblems
Fix bug in IE 10+ so that file export has options to save, cancel and…
2 parents 50c5344 + c1f3af9 commit 80230ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/exporter/js/exporter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@
901901

902902
// IE10+
903903
if (navigator.msSaveBlob) {
904-
return navigator.msSaveBlob(
904+
return navigator.msSaveOrOpenBlob(
905905
new Blob(
906906
[exporterOlderExcelCompatibility ? "\uFEFF" : '', csvContent],
907907
{ type: strMimeType } ),

0 commit comments

Comments
 (0)