1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
This commit is contained in:
DanieL 2023-02-13 14:41:08 -03:00
parent 64c36d9f4e
commit 0d0338876d
1197 changed files with 121461 additions and 179724 deletions

17
node_modules/video.js/core.js generated vendored
View file

@ -1,6 +1,6 @@
/**
* @license
* Video.js 7.20.3 <http://videojs.com/>
* Video.js 7.21.2 <http://videojs.com/>
* Copyright Brightcove, Inc. <https://www.brightcove.com/>
* Available under Apache License Version 2.0
* <https://github.com/videojs/video.js/blob/main/LICENSE>
@ -38,7 +38,7 @@ var vtt__default = /*#__PURE__*/_interopDefaultLegacy(vtt);
var _construct__default = /*#__PURE__*/_interopDefaultLegacy(_construct);
var _inherits__default = /*#__PURE__*/_interopDefaultLegacy(_inherits);
var version = "7.20.3";
var version = "7.21.2";
/**
* An Object that contains lifecycle hooks as keys which point to an array
@ -2887,7 +2887,8 @@ EventTarget.prototype.queueTrigger = function (event) {
map["delete"](type);
window__default['default'].clearTimeout(oldTimeout);
var timeout = window__default['default'].setTimeout(function () {
// if we cleared out all timeouts for the current target, delete its map
map["delete"](type); // if we cleared out all timeouts for the current target, delete its map
if (map.size === 0) {
map = null;
EVENT_MAP["delete"](_this);
@ -28146,11 +28147,13 @@ Player.prototype.hasPlugin = function (name) {
* @file extend.js
* @module extend
*/
var hasLogged = false;
/**
* Used to subclass an existing class by emulating ES subclassing using the
* `extends` keyword.
*
* @function
* @deprecated
* @example
* var MyComponent = videojs.extend(videojs.getComponent('Component'), {
* myCustomMethod: function() {
@ -28173,6 +28176,14 @@ var extend = function extend(superClass, subClassMethods) {
subClassMethods = {};
}
// Log a warning the first time extend is called to note that it is deprecated
// It was previously deprecated in our documentation (guides, specifically),
// but was never formally deprecated in code.
if (!hasLogged) {
log.warn('videojs.extend is deprecated as of Video.js 7.22.0 and will be removed in Video.js 8.0.0');
hasLogged = true;
}
var subClass = function subClass() {
superClass.apply(this, arguments);
};