Skip to content

Commit

Permalink
feat: improve hyperlinking
Browse files Browse the repository at this point in the history
  • Loading branch information
mtwente committed Oct 28, 2024
1 parent 041f47c commit 1ae2262
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions _includes/js/table-js.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,13 @@
{
text: 'Datenarchiv',
action: function () {
window.open('https://zenodo.org/communities/stadt-geschichte-basel', '_blank');
window.open('https://zenodo.org/communities/stadt-geschichte-basel', '_blank', 'noopener,noreferrer');
},
className: 'btn btn-outline-primary'
}
className: 'btn btn-outline-primary',
attr: {
'aria-label': 'Öffnen Sie das Datenarchiv in einem neuen Tab'
}
}
],
// get the data from json
columns: [ {% for i in (0..fcount) %}{ data: '{{ i }}' }{% unless forloop.last %},{% endunless %}{% endfor %} ],
Expand Down

0 comments on commit 1ae2262

Please sign in to comment.