mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 08:27:03 +03:00
Bugfix: i've broken the download() function
This commit is contained in:
parent
097fb4896d
commit
0647b5201f
1 changed files with 1 additions and 2 deletions
|
|
@ -69,9 +69,8 @@ class AbstractApp extends AbstractBoot {
|
||||||
} else {
|
} else {
|
||||||
const oLink = document.createElement('a');
|
const oLink = document.createElement('a');
|
||||||
oLink.href = link;
|
oLink.href = link;
|
||||||
document.body.append(oLink).click();
|
document.body.appendChild(oLink).click();
|
||||||
oLink.remove();
|
oLink.remove();
|
||||||
// open(link, '_self');
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue