mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
SG-852 Removed msSaveOrOpenBlob (#4379)
This commit is contained in:
@@ -29,16 +29,12 @@ export class BrowserFileDownloadService implements FileDownloadService {
|
|||||||
true
|
true
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
if ((navigator as any).msSaveOrOpenBlob) {
|
const a = window.document.createElement("a");
|
||||||
(navigator as any).msSaveBlob(builder.blob, request.fileName);
|
a.href = URL.createObjectURL(builder.blob);
|
||||||
} else {
|
a.download = request.fileName;
|
||||||
const a = window.document.createElement("a");
|
window.document.body.appendChild(a);
|
||||||
a.href = URL.createObjectURL(builder.blob);
|
a.click();
|
||||||
a.download = request.fileName;
|
window.document.body.removeChild(a);
|
||||||
window.document.body.appendChild(a);
|
|
||||||
a.click();
|
|
||||||
window.document.body.removeChild(a);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user