corrigindo cortes de samples no download de projetos do mmpCreator
Deploy / Deploy (push) Successful in 2m4s
Details
Deploy / Deploy (push) Successful in 2m4s
Details
This commit is contained in:
parent
b34bbc28fd
commit
d3a93c7278
|
|
@ -917,17 +917,6 @@ function downloadBlob(blob, fileName) {
|
|||
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 --------------------
|
||||
|
||||
function _clamp(n, a, b) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue