mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2025-10-31 12:42:07 +00:00 
			
		
		
		
	Add hotkey to enable captions with "c" (#627)
Co-authored-by: metzgegu <guillaume.metzger@wizbii.com>
This commit is contained in:
		| @@ -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(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 metzgegu
					metzgegu