mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-10 10:18:23 +00:00
Add hotkey to enable captions with "c" (#627)
Co-authored-by: metzgegu <guillaume.metzger@wizbii.com>
This commit is contained in:
parent
78f0372707
commit
f1f45551f4
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user