mirror of
https://github.com/massgravel/massgrave.dev.git
synced 2024-11-23 23:10:55 +07:00
5 lines
169 B
JavaScript
5 lines
169 B
JavaScript
(function() {
|
|
for (const link of document.getElementsByTagName('a')) {
|
|
if (/^(https?:)?\/\//.test(link.getAttribute('href'))) link.target = '_blank';
|
|
}
|
|
})(); |