corrigindo cortes de samples no download de projetos do mmpCreator
Deploy / Deploy (push) Successful in 2m4s Details

This commit is contained in:
JotaChina 2025-12-28 10:08:55 -03:00
parent b34bbc28fd
commit d3a93c7278
1 changed files with 0 additions and 11 deletions

View File

@ -917,17 +917,6 @@ function downloadBlob(blob, fileName) {
URL.revokeObjectURL(url); URL.revokeObjectURL(url);
} }
function downloadBlob(blob, fileName) {
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
a.download = fileName;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}
// -------------------- WAV helpers -------------------- // -------------------- WAV helpers --------------------
function _clamp(n, a, b) { function _clamp(n, a, b) {