Iceshrimp.NET/Iceshrimp.Frontend/Pages/Settings/About.razor.js

13 lines
No EOL
388 B
JavaScript

export function DownloadFile(filename, contentType, content) {
const file = new File([content], filename, { type: contentType});
const exportUrl = URL.createObjectURL(file);
const a = document.createElement("a");
document.body.appendChild(a);
a.href = exportUrl;
a.download = filename;
a.target = "_self";
a.click();
URL.revokeObjectURL(exportUrl);
}