summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOmar Roth <omarroth@protonmail.com>2020-02-06 20:12:17 -0500
committerGitHub <noreply@github.com>2020-02-06 20:12:17 -0500
commit9a3becdecca96cd6db9af2324ca7714fc35c6693 (patch)
tree56ea9ec65a6b1d0fe11487ab3331f445871ff856
parent9841f74adc94a4845aea6aace8d2408c3255dfa7 (diff)
parentdd9f1024f400cf35fcc7d2fbaec6bb45828e5e60 (diff)
downloadinvidious-9a3becdecca96cd6db9af2324ca7714fc35c6693.tar.gz
invidious-9a3becdecca96cd6db9af2324ca7714fc35c6693.tar.bz2
invidious-9a3becdecca96cd6db9af2324ca7714fc35c6693.zip
Merge pull request #1011 from jorgesumle/master
Remove invalid and useless HTML from embed player
-rw-r--r--assets/js/player.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/js/player.js b/assets/js/player.js
index 79788b1e..eecc0868 100644
--- a/assets/js/player.js
+++ b/assets/js/player.js
@@ -35,7 +35,7 @@ var shareOptions = {
title: player_data.title,
description: player_data.description,
image: player_data.thumbnail,
- embedCode: "<iframe id='ivplayer' type='text/html' width='640' height='360' src='" + embed_url + "' style='border:none;'></iframe>"
+ embedCode: "<iframe id='ivplayer' width='640' height='360' src='" + embed_url + "' style='border:none;'></iframe>"
}
var player = videojs('player', options);