ctd1500 / videojs-hotkeys

Adds more hotkey support to video.js
Apache License 2.0
196 stars 107 forks source link

Makes hotkeys trigger pause / playing events like the video.js seekbar #41

Closed kaizau closed 7 years ago

kaizau commented 7 years ago

By default, interacting with the video.js seekbar triggers pause and playing events if the video is playing: https://github.com/videojs/video.js/blob/master/src/js/control-bar/progress-control/seek-bar.js#L115

Using hotkeys doesn't trigger the same events, making it hard to build consistent behavior on top of those events. This PR replicates the seekbar behavior.