瀏覽代碼

Update minshell.html

pull/5457/head
Ray 1 月之前
父節點
當前提交
6e70dece56
共有 1 個檔案被更改,包括 6 行新增0 行删除
  1. +6
    -0
      src/minshell.html

+ 6
- 0
src/minshell.html 查看文件

@ -54,6 +54,12 @@
// '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
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>
</head>

Loading…
取消
儲存