videojs-hotkeys
videojs-hotkeys copied to clipboard
Adds more hotkey support to video.js
I noticed in your ReadMe page and source code that you didn't have a Picture-In-Picture option. And I'm a sucker for that accessibility. In my program, I was sort of...
This exposes `percentNumberKey` which allows us to pass in custom numbers override function if we need to.
```console VIDEOJS: WARN: videojs.mergeOptions is deprecated and will be removed in 9.0; please use videojs.obj.merge instead. ``` ### Possible fix for [videojs.hotkeys.js](https://github.com/ctd1500/videojs-hotkeys/blob/master/videojs.hotkeys.js): ```js // Use built-in merge function var mergeOptions...
Is there a way to enable disable de plugin functions? Because i want to disable it on arrow down and enable on arrow up. And to enable and disable on...
TypeScript 4.4 adds "exactOptionalPropertyTypes" setting, which if enabled, will fail type check if undefined is explicitly passed to an optional property. By making the undefined property explicitly, there will be...
Hi @ctd1500 , Thanks for the great plugin! After I press the right/left arrow keys to seek video will cause a pause when it is playing. I think just using...
8.17.3 as of this commit. cc @ctd1500
hai!! i added this plugin to my vjs config on poke (https://github.com/ashley0143/poke) cpu usage went up alot when i enabled this plugin. any idea why?
Build should contain the `.cjs` and `.mjs` files ### Changes (draft) ```diff // package.json + "exports": { + "import": "./videojs.hotkeys.mjs", + "require": "./videojs.hotkeys.cjs", + "types": "./index.d.ts" + }, ```