Skip to content

Commit 0621e91

Browse files
committed
fix target to _blank
1 parent 5ad92e1 commit 0621e91

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

source/js/link-generator.js

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ function createLinkElement(href, text) {
3131
const link = document.createElement('a');
3232
link.href = href;
3333
link.innerHTML = `<i class="fa fa-folder-open"></i> ${text}`;
34+
link.target = '_blank';
3435
return link;
3536
}
3637

0 commit comments

Comments
 (0)