mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +02:00
Fixed: External links again open in new windows.
This commit is contained in:
parent
a06a3fa5d6
commit
330554edb0
@ -25,9 +25,15 @@ var routeBinder = {
|
||||
var linkElement = $target.closest('a').first();
|
||||
var href = linkElement.attr('href');
|
||||
|
||||
// Set noreferrer for external links.
|
||||
if (href && href.startsWith('http') && !linkElement.attr('rel')) {
|
||||
linkElement.attr('rel', 'noreferrer');
|
||||
if (href && href.startsWith('http')) {
|
||||
// Set noreferrer for external links.
|
||||
if (!linkElement.attr('rel')) {
|
||||
linkElement.attr('rel', 'noreferrer');
|
||||
}
|
||||
// Open all external links in new windows.
|
||||
if (!linkElement.attr('target')) {
|
||||
linkElement.attr('target', '_blank');
|
||||
}
|
||||
}
|
||||
|
||||
if (linkElement.hasClass('no-router') || event.type !== 'click') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user