competitions/templates/index.html [26:33]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
const content = document.getElementById('content');
const links = content.getElementsByTagName('a');
for (let i = 0; i < links.length; i++) {
if (!links[i].hasAttribute('target')) {
links[i].setAttribute('target', '_blank');
}
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
competitions/templates/index.html [656:663]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
const content = document.getElementById('content');
const links = content.getElementsByTagName('a');
for (let i = 0; i < links.length; i++) {
if (!links[i].hasAttribute('target')) {
links[i].setAttribute('target', '_blank');
}
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -