mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-11 05:58:44 +01:00
Update minshell.html
This commit is contained in:
@ -54,6 +54,12 @@
|
|||||||
// 'Ask where to save each file before downloading' - which you can set true/false.
|
// 'Ask where to save each file before downloading' - which you can set true/false.
|
||||||
// If you enable this setting it would always ask you and bring the SaveAsDialog
|
// If you enable this setting it would always ask you and bring the SaveAsDialog
|
||||||
saveAs(blob, localFSname);
|
saveAs(blob, localFSname);
|
||||||
|
|
||||||
|
// Alternative implementation to avoid FileSaver.js
|
||||||
|
//const link = document.createElement("a");
|
||||||
|
//link.href = URL.createObjectURL(blob);
|
||||||
|
//link.download = localFSname;
|
||||||
|
//link.click();
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
Reference in New Issue
Block a user