Skip to content

Commit

Permalink
Release 0.2.21
Browse files Browse the repository at this point in the history
  • Loading branch information
ctd1500 committed Mar 14, 2018
1 parent db735bb commit 390f60e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -78,7 +78,7 @@ videojs('vidId').ready(function() {
- `enableNumbers` (boolean): Enables seeking the video by pressing the number keys (default `true`)
- `enableModifiersForNumbers` (boolean): Enables the use of Ctrl/Alt/Cmd + Number keys for skipping around in the video, instead of switching browser tabs. This is enabled by default due to backwards compatibility [PR #35](https://github.com/ctd1500/videojs-hotkeys/pull/35) (default: `true`)
- `alwaysCaptureHotkeys` (boolean): Forces the capture of hotkeys, even when control elements are focused.
The **Enter**/**Return** key may be used instead to activate the control elements (default: `false`)
The **Enter**/**Return** key may be used instead to activate the control elements. (default: `false`) (**Note:** This feature may break accessibility, and cause unexpected behavior)
- `enableInactiveFocus` (boolean): This reassigns focus to the player when the control bar fades out after a user has clicked a button on the control bar (default: `true`)
- `skipInitialFocus` (boolean): This stops focusing the player on initial Play under unique autoplay situations. More information in [Issue #44](https://github.com/ctd1500/videojs-hotkeys/issues/44) (default: `false`)
- `enableJogStyle` (boolean): Enables seeking the video in a broadcast-style jog by pressing the Up and Down Arrow keys.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "videojs-hotkeys",
"version": "0.2.20",
"version": "0.2.21",
"description": "Adds more hotkey support to video.js",
"main": "videojs.hotkeys.min.js",
"author": "Chris Dougherty",
Expand Down
2 changes: 1 addition & 1 deletion videojs.hotkeys.js
Expand Up @@ -19,7 +19,7 @@
}(this, function (videojs) {
"use strict";
if (typeof window !== 'undefined') {
window['videojs_hotkeys'] = { version: "0.2.20" };
window['videojs_hotkeys'] = { version: "0.2.21" };
}

var hotkeys = function(options) {
Expand Down
4 changes: 2 additions & 2 deletions videojs.hotkeys.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 390f60e

Please sign in to comment.