
Add spacebar controll
Is there any option to add the very pupular function to pause/play a video with space? In fullscreen?
Without this otion i can't use this player.
Is there any option to add the very pupular function to pause/play a video with space? In fullscreen?
Without this otion i can't use this player.
Understood. We are working on an implementation for keyboard controls, but we are not able to confirm the date this functionality will be available.
Hope this helps,
Todd
you could try: [gist: https://gist.github.com/moimikey/b3aaaf5850708dee6714]
```
jwplayer('selector').setup
onPlaylist: function () {
$(document).on('keydown', function (evt) {
keycode = evt.keyCode ? evt.keyCode : evt.which;
if (keycode === 32) jwplayer('selector').play()
});
}
```
or rather than $(document), the jwplayer div directly.
That would also work.