Move script tags into video view

This commit is contained in:
Omar Roth 2018-01-21 11:05:30 -06:00
parent 02b6990240
commit 1305410f4d
1 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
<% content_for "header" do %>
<%= video.info["title"] + " - " %>
<link rel="stylesheet" href="/css/video-js.css">
<script src="/js/video.js"></script>
<script src="/js/videojs.hotkeys.min.js"></script>
<title><%= video.info["title"] %> - Invidious</title>
<% end %>
<% if listen == "true" %>
@ -71,10 +74,10 @@ var player = videojs('player', options, function() {
<div class="pure-u-1 pure-u-md-1-5">
<% rvs.each do |rv| %>
<% if rv.has_key?("id") %>
<a target="_blank" class="link" href="/watch?v=<%= rv["id"] %>">
<a class="link" href="/watch?v=<%= rv["id"] %>">
<img style="width:100%" alt="thumbnail" src="<%= rv["iurlmq"] %>">
</a>
<p><a target="_blank" class="link" href="/watch?v=<%= rv["id"] %>"><%= rv["title"] %></a></p>
<p><a class="link" href="/watch?v=<%= rv["id"] %>"><%= rv["title"] %></a></p>
<% end %>
<% end %>
</div>