Remove extra space in shareOptions.embedCode of player script

Follow lint indications :
https://github.com/iv-org/invidious/pull/2912#discussion_r811367117
This commit is contained in:
Féry Mathieu (Mathius) 2022-02-22 00:21:47 +01:00
parent 9979a1b910
commit d77586d02d
No known key found for this signature in database
GPG Key ID: F9CCC80C18A59037

View File

@ -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>";
}
};