1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-03 00:20:35 +02:00

add/remove created anchor to page when clicking it

This commit is contained in:
Kyle Spearrin 2018-07-25 12:04:14 -04:00
parent c5bac554a7
commit fe9df3977a

View File

@ -102,7 +102,10 @@ export class WebPlatformUtilsService implements PlatformUtilsService {
a.href = uri;
a.target = '_blank';
a.rel = 'noreferrer noopener';
a.classList.add('d-none');
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
}
saveFile(win: Window, blobData: any, blobOptions: any, fileName: string): void {