We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ad92e1 commit 0621e91Copy full SHA for 0621e91
source/js/link-generator.js
@@ -31,6 +31,7 @@ function createLinkElement(href, text) {
31
const link = document.createElement('a');
32
link.href = href;
33
link.innerHTML = `<i class="fa fa-folder-open"></i> ${text}`;
34
+ link.target = '_blank';
35
return link;
36
}
37
0 commit comments