Skip to content

Commit

Permalink
chore: build and documentation for release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 20, 2024
1 parent 99a6c57 commit d9d7e85
Show file tree
Hide file tree
Showing 50 changed files with 130 additions and 86 deletions.
54 changes: 38 additions & 16 deletions dist/maidr.js
Original file line number Diff line number Diff line change
Expand Up @@ -4812,7 +4812,7 @@ class Display {
}
verboseText += plot.pointValuesX[position.x] + ', ';
if (plot.plotLegend) {
plot.plotLegend.y + ' is ';
verboseText += plot.plotLegend.y + ' is ';
}
verboseText += plot.pointValuesY[position.x];

Expand Down Expand Up @@ -8894,8 +8894,8 @@ class Control {
let selectorElems = document.querySelectorAll(singleMaidr.selector);
if (selectorElems.length > 0) {
constants.events.push([
document,
'mousemove',
constants.chart,
['mousemove', 'touchmove'],
function (e) {
if (constants.chartType == 'bar' || constants.chartType == 'hist') {
// check if we've hit a selector
Expand Down Expand Up @@ -9004,13 +9004,15 @@ class Control {
} else if (constants.chartType == 'heat') {
// check if we've hit a selector
let index = Array.from(selectorElems).indexOf(e.target);
if (
position.x != Math.floor(index / plot.num_rows) ||
position.y != plot.num_rows - (index % plot.num_rows) - 1
) {
position.x = Math.floor(index / plot.num_rows);
position.y = plot.num_rows - (index % plot.num_rows) - 1;
control.UpdateAll();
if (index != -1) {
if (
position.x != Math.floor(index / plot.num_rows) ||
position.y != plot.num_rows - (index % plot.num_rows) - 1
) {
position.x = Math.floor(index / plot.num_rows);
position.y = plot.num_rows - (index % plot.num_rows) - 1;
control.UpdateAll();
}
}
} else if (constants.chartType == 'line') {
// compare coordinates and get the point we're closest to, if we're within 24px
Expand Down Expand Up @@ -12134,17 +12136,37 @@ function SetEvents() {
// add all events
for (let i = 0; i < constants.events.length; i++) {
if (Array.isArray(constants.events[i][0])) {
// sometimes we have multiple elements to apply the same event to in the [i][0] spot
for (let j = 0; j < constants.events[i][0].length; j++) {
constants.events[i][0][j]?.addEventListener(
// and sometimes we have multiple event types in [i][1]
if (Array.isArray(constants.events[i][1])) {
for (let k = 0; k < constants.events[i][1].length; k++) {
constants.events[i][0][j]?.addEventListener(
constants.events[i][1][k],
constants.events[i][2]
);
}
} else {
constants.events[i][0][j]?.addEventListener(
constants.events[i][1],
constants.events[i][2]
);
}
}
} else {
if (Array.isArray(constants.events[i][1])) {
for (let j = 0; j < constants.events[i][1].length; j++) {
constants.events[i][0]?.addEventListener(
constants.events[i][1][j],
constants.events[i][2]
);
}
} else {
constants.events[i][0]?.addEventListener(
constants.events[i][1],
constants.events[i][2]
);
}
} else {
constants.events[i][0]?.addEventListener(
constants.events[i][1],
constants.events[i][2]
);
}
}
// add all post load events
Expand Down
2 changes: 1 addition & 1 deletion dist/maidr.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/AdvancedUserSettings.html
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,7 @@ <h5>Type:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:54 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Audio.html
Original file line number Diff line number Diff line change
Expand Up @@ -1396,7 +1396,7 @@ <h4 class="name" id="playTone"><span class="type-signature"></span>playTone<span
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:54 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/AudioProperties.html
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ <h5>Type:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:54 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/BTSModes.html
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ <h5>Type:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/BarChart.html
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ <h4 class="name" id="UnSelectPrevious"><span class="type-signature"></span>UnSel
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/BasicChartProperties.html
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ <h5>Type:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/BoxPlot.html
Original file line number Diff line number Diff line change
Expand Up @@ -1329,7 +1329,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/BoxplotRect.html
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ <h4 class="name" id="UpdateRect"><span class="type-signature"></span>UpdateRect<
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/ChatLLM.html
Original file line number Diff line number Diff line change
Expand Up @@ -1114,7 +1114,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Constants.html
Original file line number Diff line number Diff line change
Expand Up @@ -2296,7 +2296,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
8 changes: 4 additions & 4 deletions docs/Control.html
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ <h4 class="name" id="GetNextPrevFocusable"><span class="type-signature"></span>G

<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="controls.js.html">controls.js</a>, <a href="controls.js.html#line3214">line 3214</a>
<a href="controls.js.html">controls.js</a>, <a href="controls.js.html#line3216">line 3216</a>
</li></ul></dd>


Expand Down Expand Up @@ -698,7 +698,7 @@ <h4 class="name" id="SetKeyControls"><span class="type-signature">(async) </span

<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="controls.js.html">controls.js</a>, <a href="controls.js.html#line497">line 497</a>
<a href="controls.js.html">controls.js</a>, <a href="controls.js.html#line499">line 499</a>
</li></ul></dd>


Expand Down Expand Up @@ -1013,7 +1013,7 @@ <h4 class="name" id="isUndefinedOrNull"><span class="type-signature"></span>isUn

<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="controls.js.html">controls.js</a>, <a href="controls.js.html#line3247">line 3247</a>
<a href="controls.js.html">controls.js</a>, <a href="controls.js.html#line3249">line 3249</a>
</li></ul></dd>


Expand Down Expand Up @@ -1142,7 +1142,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/DebugSettings.html
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ <h5>Type:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Description.html
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ <h5>Parameters:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Display.html
Original file line number Diff line number Diff line change
Expand Up @@ -1575,7 +1575,7 @@ <h4 class="name" id="toggleTextMode"><span class="type-signature"></span>toggleT
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/HeatMap.html
Original file line number Diff line number Diff line change
Expand Up @@ -1493,7 +1493,7 @@ <h4 class="name" id="updateConstants"><span class="type-signature"></span>update
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/HeatMapRect.html
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ <h4 class="name" id="UpdateRect"><span class="type-signature"></span>UpdateRect<
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Helper.html
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Histogram.html
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ <h4 class="name" id="SetMaxMin"><span class="type-signature"></span>SetMaxMin<sp
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/HtmlIds.html
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ <h5>Type:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/LLMSettings.html
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ <h5>Type:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Layer0Point.html
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Layer1Point.html
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/LinePlot.html
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ <h4 class="name" id="UpdateConstants"><span class="type-signature"></span>Update
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/LogError.html
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ <h5>Parameters:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/PlatformControls.html
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ <h5>Type:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Point.html
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Position.html
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ <h4 class="name" id="Position"><span class="type-signature"></span>new Position<
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Resources.html
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ <h5>Returns:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Review.html
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ <h5>Parameters:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/ScatterPlot.html
Original file line number Diff line number Diff line change
Expand Up @@ -1427,7 +1427,7 @@ <h4 class="name" id="SetLineLayer"><span class="type-signature"></span>SetLineLa
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Dec 19 2024 00:20:06 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Fri Dec 20 2024 00:18:55 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
Loading

0 comments on commit d9d7e85

Please sign in to comment.