Fix minor web bugs

This commit is contained in:
Christian Pauly
2020-04-10 18:52:40 +02:00
parent 6aa6d0e911
commit c746778f3f
3 changed files with 5 additions and 3 deletions

View File

@ -18,7 +18,9 @@ extension MatrixFileExtension on MatrixFile {
var element = html.document.createElement('a');
element.setAttribute(
'href', html.Url.createObjectUrlFromBlob(html.Blob([bytes])));
element.setAttribute('target', "new");
element.setAttribute('target', "_blank");
element.setAttribute('rel', "noopener");
element.setAttribute('download', fileName);
element.setAttribute('type', mimeType);
element.style.display = 'none';
html.document.body.append(element);