summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOmar Roth <omarroth@hotmail.com>2018-07-19 10:57:57 -0500
committerOmar Roth <omarroth@hotmail.com>2018-07-19 10:57:57 -0500
commitb965c8a7a48811a34c58c73ee363eb9faea85144 (patch)
treea622d6dfa4ca84ba73f234781d93309b11976493
parent8861d31b217180f1f37a262b9af3ffd075fa0497 (diff)
downloadinvidious-b965c8a7a48811a34c58c73ee363eb9faea85144.tar.gz
invidious-b965c8a7a48811a34c58c73ee363eb9faea85144.tar.bz2
invidious-b965c8a7a48811a34c58c73ee363eb9faea85144.zip
Fix typo in embedded player
-rw-r--r--src/invidious/views/embed.ecr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/invidious/views/embed.ecr b/src/invidious/views/embed.ecr
index 81926c4a..3b3b1d5c 100644
--- a/src/invidious/views/embed.ecr
+++ b/src/invidious/views/embed.ecr
@@ -33,8 +33,8 @@ video, #my_video, .video-js, .vjs-default-skin
<% if autoplay == 1 %>autoplay<% end %>
<% if controls == 1 %>controls<% end %>
<% if video_loop == 1 %>loop<% end %>
- <% if listen %>
class="video-js vjs-default-skin">
+ <% if listen %>
<% audio_streams.each_with_index do |fmt, i| %>
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["bitrate"] %>k" selected="<%= i == 0 ? true : false %>">
<% end %>