Fix title URL for embedded videos

このコミットが含まれているのは:
Omar Roth 2019-06-16 13:14:56 -05:00
コミット 2e1f9d5fa9
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: B8254FB7EC3D37F2
1個のファイルの変更2行の追加2行の削除

ファイルの表示

@ -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'
}]