help page links now respect newTab config

This commit is contained in:
Cade Scroggins 2017-03-04 12:10:20 -08:00
parent 0c817650c4
commit caf0a9408e

View file

@ -336,7 +336,7 @@
_buildListCommands(category) {
return category.commands.map(({ url, key, name }) => (
`<li class="command">
<a href="${url}">
<a href="${url}" target="${CONFIG.newTab ? '_blank' : '_self'}">
<span class="command-key">${key}</span>
<span class="command-name">${name}</span>
</a>