Skip to content

Commit c1f3af9

Browse files
committed
Fix bug in IE 10+ so that file export has options to save, cancel and open.
Current functionality only offers save and cancel.
1 parent fcbafc6 commit c1f3af9

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)