mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-25 19:38:55 +01:00
re-license :3
This commit is contained in:
parent
819533f0a2
commit
13b28550e9
1 changed files with 8 additions and 3 deletions
|
@ -1,9 +1,14 @@
|
||||||
/*
|
/*
|
||||||
* Video.js Hotkeys
|
* Video.js Hotkeys For Poke
|
||||||
* https://github.com/ctd1500/videojs-hotkeys
|
* https://github.com/ctd1500/videojs-hotkeys
|
||||||
*
|
*
|
||||||
|
* forked for poke - non-fork version copyright:
|
||||||
* Copyright (c) 2015 Chris Dougherty
|
* Copyright (c) 2015 Chris Dougherty
|
||||||
* Licensed under the Apache-2.0 license.
|
* Licensed under the Apache-2.0 license.
|
||||||
|
*
|
||||||
|
* fork copy(left)right:
|
||||||
|
* Copyleft (c) 2024 Poke (Ashley)
|
||||||
|
* Licensed under the GNU GPL 3.0 or later license.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
;(function(root, factory) {
|
;(function(root, factory) {
|
||||||
|
@ -20,7 +25,7 @@
|
||||||
}(this, function (videojs) {
|
}(this, function (videojs) {
|
||||||
"use strict";
|
"use strict";
|
||||||
if (typeof window !== 'undefined') {
|
if (typeof window !== 'undefined') {
|
||||||
window['videojs_hotkeys'] = { version: "0.2.28" };
|
window['videojs_hotkeys'] = { version: "0.2.29-poke" };
|
||||||
}
|
}
|
||||||
|
|
||||||
var hotkeys = function(options) {
|
var hotkeys = function(options) {
|
||||||
|
@ -31,7 +36,7 @@
|
||||||
volumeStep: 0.1,
|
volumeStep: 0.1,
|
||||||
seekStep: 5,
|
seekStep: 5,
|
||||||
enableMute: true,
|
enableMute: true,
|
||||||
enableVolumeScroll: true,
|
enableVolumeScroll: false,
|
||||||
enableHoverScroll: false,
|
enableHoverScroll: false,
|
||||||
enableFullscreen: true,
|
enableFullscreen: true,
|
||||||
enableNumbers: true,
|
enableNumbers: true,
|
||||||
|
|
Loading…
Reference in a new issue