Debug export, handle export of by player

This commit is contained in:
Claude Brisson
2023-12-27 12:19:25 +01:00
parent 797ac17b74
commit 23bb6cb86d
3 changed files with 23 additions and 7 deletions

View File

@@ -165,6 +165,7 @@ function close_modal() {
function downloadFile(blob, filename) {
let url = URL.createObjectURL(blob);
let link = document.createElement("a");
link.setAttribute("href", url);
link.setAttribute("download", filename);
link.style.visibility = 'hidden';