mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 07:22:16 +05:30
Add target="_blank" to embed titles
This commit is contained in:
parent
2e1f9d5fa9
commit
1477f99c2c
@ -106,12 +106,12 @@ if (location.pathname.startsWith('/embed/')) {
|
|||||||
player.overlay({
|
player.overlay({
|
||||||
overlays: [{
|
overlays: [{
|
||||||
start: 'loadstart',
|
start: 'loadstart',
|
||||||
content: '<h1><a href="' + location.origin + '/watch?v=' + video_data.id + '">' + player_data.title + '</a></h1>',
|
content: '<h1><a rel="noopener" target="_blank" href="' + location.origin + '/watch?v=' + video_data.id + '">' + player_data.title + '</a></h1>',
|
||||||
end: 'playing',
|
end: 'playing',
|
||||||
align: 'top'
|
align: 'top'
|
||||||
}, {
|
}, {
|
||||||
start: 'pause',
|
start: 'pause',
|
||||||
content: '<h1><a href="' + location.origin + '/watch?v=' + video_data.id + '">' + player_data.title + '</a></h1>',
|
content: '<h1><a rel="noopener" target="_blank" href="' + location.origin + '/watch?v=' + video_data.id + '">' + player_data.title + '</a></h1>',
|
||||||
end: 'playing',
|
end: 'playing',
|
||||||
align: 'top'
|
align: 'top'
|
||||||
}]
|
}]
|
||||||
|
Loading…
Reference in New Issue
Block a user