Don't redefine the "preload" option in player.js

If the HTML5 "<video>" element defines the "preload" attribute directly,
it isn't necessary to redefine the "preload" option in the player.js.
This commit is contained in:
Thomas Lange 2023-09-27 15:25:29 +02:00
parent bf470704a5
commit 824cc1a5aa
2 changed files with 1 additions and 6 deletions

View file

@ -34,10 +34,6 @@ if (player_data.aspect_ratio) {
options.aspectRatio = player_data.aspect_ratio;
}
if (player_data.preload) {
options.preload = player_data.preload
}
var embed_url = new URL(location);
embed_url.searchParams.delete('v');
var short_url = location.origin + '/' + video_data.id + embed_url.search;