Showing
1 changed file
with
0 additions
and
1 deletions
... | @@ -5,7 +5,6 @@ function downloadURL(url: string, name: string) { | ... | @@ -5,7 +5,6 @@ function downloadURL(url: string, name: string) { |
5 | const link = document.createElement("a"); | 5 | const link = document.createElement("a"); |
6 | link.setAttribute("download", name); | 6 | link.setAttribute("download", name); |
7 | link.href = url; | 7 | link.href = url; |
8 | - link.target = "_blank"; | ||
9 | link.click(); | 8 | link.click(); |
10 | } | 9 | } |
11 | 10 | ... | ... |
-
Please register or login to post a comment