We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebf2f61 commit 6e70decCopy full SHA for 6e70dec
src/minshell.html
@@ -54,6 +54,12 @@
54
// 'Ask where to save each file before downloading' - which you can set true/false.
55
// If you enable this setting it would always ask you and bring the SaveAsDialog
56
saveAs(blob, localFSname);
57
+
58
+ // Alternative implementation to avoid FileSaver.js
59
+ //const link = document.createElement("a");
60
+ //link.href = URL.createObjectURL(blob);
61
+ //link.download = localFSname;
62
+ //link.click();
63
}
64
</script>
65
</head>
0 commit comments