Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-CloudComputing
/
C_Team_KhuDrive
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
김재형
2020-06-17 15:46:29 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4a4f33a1cf97c0462f1c8faaeb997810e1272db1
4a4f33a1
1 parent
975cdab3
Remove target=_blank
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
1 deletions
frontend/src/file/useDownload.ts
frontend/src/file/useDownload.ts
View file @
4a4f33a
...
...
@@ -5,7 +5,6 @@ function downloadURL(url: string, name: string) {
const
link
=
document
.
createElement
(
"a"
);
link
.
setAttribute
(
"download"
,
name
);
link
.
href
=
url
;
link
.
target
=
"_blank"
;
link
.
click
();
}
...
...
Please
register
or
login
to post a comment