Add hotkey to enable captions with "c" (#627)

Co-authored-by: metzgegu <guillaume.metzger@wizbii.com>
This commit is contained in:
metzgegu 2021-11-16 15:04:29 +01:00 committed by GitHub
parent 78f0372707
commit f1f45551f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -81,7 +81,7 @@ export default {
.then(hotkeys => {
this.hotkeys = hotkeys;
var self = this;
hotkeys("f,m,j,k,l,space,up,down,left,right", function(e, handler) {
hotkeys("f,m,j,k,l,c,space,up,down,left,right", function(e, handler) {
const videoEl = self.$refs.videoEl;
switch (handler.key) {
case "f":
@ -100,6 +100,10 @@ export default {
videoEl.currentTime = videoEl.currentTime + 15;
e.preventDefault();
break;
case "c":
self.$player.setTextTrackVisibility(!self.$player.isTextTrackVisible());
e.preventDefault();
break;
case "k":
case "space":
if (videoEl.paused) videoEl.play();