summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndre Borie <hi@rjevski.io>2020-09-15 18:50:17 +0100
committerGitHub <noreply@github.com>2020-09-15 18:50:17 +0100
commita54cbe896da6a6702860254d1d64b3112fb4a7a2 (patch)
tree03adb5b4fd25848c845eb02065a35f24514b67fb /src
parent9995a8d53f21e848750a6d5476623e5788efd595 (diff)
downloadinvidious-a54cbe896da6a6702860254d1d64b3112fb4a7a2.tar.gz
invidious-a54cbe896da6a6702860254d1d64b3112fb4a7a2.tar.bz2
invidious-a54cbe896da6a6702860254d1d64b3112fb4a7a2.zip
Remove on-hover tooltip from player
Using the player on latest Safari, the tooltip appears and stays stuck for long even when switching to fullscreen which is annoying. You need to explicitly click anywhere to dismiss that stuck tooltip. This doesn't seem to happen in Firefox so I am not sure whether this is a browser bug, but in any case I don't see any value in keeping this tooltip so maybe we can just remove it?
Diffstat (limited to 'src')
-rw-r--r--src/invidious/views/components/player.ecr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/invidious/views/components/player.ecr b/src/invidious/views/components/player.ecr
index 6b01d25f..0e6664fa 100644
--- a/src/invidious/views/components/player.ecr
+++ b/src/invidious/views/components/player.ecr
@@ -1,4 +1,4 @@
-<video style="outline:none;width:100%;background-color:#000" playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>"
+<video style="outline:none;width:100%;background-color:#000" playsinline poster="<%= thumbnail %>"
id="player" class="on-video_player video-js player-style-<%= params.player_style %>"
<% if params.autoplay %>autoplay<% end %>
<% if params.video_loop %>loop<% end %>