mirror of
https://github.com/iv-org/invidious
synced 2024-11-10 05:03:32 +01:00
Fix title URL for embedded videos
This commit is contained in:
parent
9dea251862
commit
2e1f9d5fa9
@ -106,12 +106,12 @@ if (location.pathname.startsWith('/embed/')) {
|
||||
player.overlay({
|
||||
overlays: [{
|
||||
start: 'loadstart',
|
||||
content: '<h1><a href="' + location.href + '">' + player_data.title + '</a></h1>',
|
||||
content: '<h1><a href="' + location.origin + '/watch?v=' + video_data.id + '">' + player_data.title + '</a></h1>',
|
||||
end: 'playing',
|
||||
align: 'top'
|
||||
}, {
|
||||
start: 'pause',
|
||||
content: '<h1><a href="' + location.href + '">' + player_data.title + '</a></h1>',
|
||||
content: '<h1><a href="' + location.origin + '/watch?v=' + video_data.id + '">' + player_data.title + '</a></h1>',
|
||||
end: 'playing',
|
||||
align: 'top'
|
||||
}]
|
||||
|
Loading…
Reference in New Issue
Block a user