Remove extra space in shareOptions.embedCode of player script

Follow lint indications :
https://github.com/iv-org/invidious/pull/2912#discussion_r811367117
pull/2912/head
Féry Mathieu (Mathius) 2022-02-22 00:21:47 +01:00
rodzic 9979a1b910
commit d77586d02d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: F9CCC80C18A59037
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -77,7 +77,7 @@ var shareOptions = {
image: player_data.thumbnail,
get embedCode() {
return "<iframe id='ivplayer' width='640' height='360' src='" +
addCurrentTimeToURL(embed_url) + "' style='border:none;'></iframe>";
addCurrentTimeToURL(embed_url) + "' style='border:none;'></iframe>";
}
};