mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
This commit is contained in:
parent
a8e3c8c7a3
commit
43af632a28
2986 changed files with 50716 additions and 116930 deletions
9
node_modules/chart.js/dist/chart.cjs
generated
vendored
9
node_modules/chart.js/dist/chart.cjs
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Chart.js v4.4.5
|
||||
* Chart.js v4.4.7
|
||||
* https://www.chartjs.org
|
||||
* (c) 2024 Chart.js Contributors
|
||||
* Released under the MIT License
|
||||
|
@ -439,9 +439,11 @@ function applyStack(stack, value, dsIndex, options = {}) {
|
|||
if (value === null) {
|
||||
return;
|
||||
}
|
||||
let found = false;
|
||||
for(i = 0, ilen = keys.length; i < ilen; ++i){
|
||||
datasetIndex = +keys[i];
|
||||
if (datasetIndex === dsIndex) {
|
||||
found = true;
|
||||
if (options.all) {
|
||||
continue;
|
||||
}
|
||||
|
@ -452,6 +454,9 @@ function applyStack(stack, value, dsIndex, options = {}) {
|
|||
value += otherValue;
|
||||
}
|
||||
}
|
||||
if (!found && !options.all) {
|
||||
return 0;
|
||||
}
|
||||
return value;
|
||||
}
|
||||
function convertObjectDataToArray(data, meta) {
|
||||
|
@ -5519,7 +5524,7 @@ function needContext(proxy, names) {
|
|||
return false;
|
||||
}
|
||||
|
||||
var version = "4.4.5";
|
||||
var version = "4.4.7";
|
||||
|
||||
const KNOWN_POSITIONS = [
|
||||
'top',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue