Skip to content

Commit

Permalink
Release 1.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chird committed Oct 23, 2023
1 parent 2f746da commit b85e353
Show file tree
Hide file tree
Showing 230 changed files with 256 additions and 240 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [1.17.2] - 2023-10-23
### Fixed
- Typo bugfix.

## [1.17.1] - 2022-10-22
### Fixed
- Fixed broken [Tooltip](https://chird.github.io/meteoJS/doc/module-meteoJS_tooltip_bootstrapTooltip.BootstrapTooltip.html) with Bootstrap v5.2.2.
Expand Down Expand Up @@ -306,7 +310,8 @@ will not work anymore, until you pass a callback to `getTimeText`.
### Fixed
- Some tests with DOM usage.

[Unreleased]: https://github.com/chird/meteoJS/compare/v1.17.1...HEAD
[Unreleased]: https://github.com/chird/meteoJS/compare/v1.17.2...HEAD
[1.17.2]: https://github.com/chird/meteoJS/compare/v1.17.1...v1.17.2
[1.17.1]: https://github.com/chird/meteoJS/compare/v1.17.0...v1.17.1
[1.17.0]: https://github.com/chird/meteoJS/compare/v1.16.1...v1.17.0
[1.16.1]: https://github.com/chird/meteoJS/compare/v1.16.0...v1.16.1
Expand Down
2 changes: 1 addition & 1 deletion doc/Modelviewer.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ <h1>Source: Modelviewer.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/RepetitiveRequests.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ <h1>Source: RepetitiveRequests.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
8 changes: 4 additions & 4 deletions doc/Sounding.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,15 +166,15 @@ <h1>Source: Sounding.js</h1>
d.v &#x3D;&#x3D;&#x3D; undefined &amp;amp;&amp;amp;
d.wdir !&#x3D;&#x3D; undefined &amp;amp;&amp;amp;
d.wspd !&#x3D;&#x3D; undefined) {
d.u &#x3D; d.wspd * Math.sin(d.wdir / 180 * Math.PI);
d.v &#x3D; d.wspd * Math.cos(d.wdir / 180 * Math.PI);
d.u &#x3D; -d.wspd * Math.sin(d.wdir / 180 * Math.PI);
d.v &#x3D; -d.wspd * Math.cos(d.wdir / 180 * Math.PI);
}
else if (d.u !&#x3D;&#x3D; undefined &amp;amp;&amp;amp;
d.v !&#x3D;&#x3D; undefined &amp;amp;&amp;amp;
d.wdir &#x3D;&#x3D;&#x3D; undefined &amp;amp;&amp;amp;
d.wspd &#x3D;&#x3D;&#x3D; undefined) {
d.wspd &#x3D; Math.sqrt(Math.pow(d.u, 2) + Math.pow(d.v, 2));
d.wdir &#x3D; Math.arctan(d.u/d.v) / Math.PI * 180;
d.wdir &#x3D; 270 - (Math.atan2(d.v, d.u) / Math.PI * 180);
}

// Humidity
Expand Down Expand Up @@ -277,7 +277,7 @@ <h1>Source: Sounding.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/Synview.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ <h1>Source: Synview.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/ThermodynamicDiagram.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ <h1>Source: ThermodynamicDiagram.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/ThermodynamicDiagramPluggable.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ <h1>Source: ThermodynamicDiagramPluggable.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/Timeline.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ <h1>Source: Timeline.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/Tooltip.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ <h1>Source: Tooltip.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/base_Collection.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ <h1>Source: base/Collection.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/base_Named.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ <h1>Source: base/Named.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/base_NamedCollection.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ <h1>Source: base/NamedCollection.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/base_Unique.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ <h1>Source: base/Unique.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/base_UniqueNamed.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ <h1>Source: base/UniqueNamed.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/calc.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ <h1>Source: calc.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/events.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ <h1>Source: Events.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/external-Event.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1><small></small><span class="symbol-name">Event</span></h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/external-HTMLElement.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1><small></small><span class="symbol-name">HTMLElement</span></h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/external-SVG.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1><small></small><span class="symbol-name">SVG</span></h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/external-XMLHttpRequest.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1><small></small><span class="symbol-name">XMLHttpRequest</span></h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/external-jQuery.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1><small></small><span class="symbol-name">jQuery</span></h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/external-momentjs.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1><small></small><span class="symbol-name">momentjs</span></h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9780,7 +9780,7 @@ <h2 id="meteoJS/tooltip/bootstrapTooltip.BootstrapTooltip">meteoJS/tooltip/boots
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
4 changes: 3 additions & 1 deletion doc/index.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ <h1>Source: index.js</h1>
import DiagramSounding from &#x27;./thermodynamicDiagram/DiagramSounding.js&#x27;;
import Hodograph from &#x27;./thermodynamicDiagram/Hodograph.js&#x27;;
import TDDiagram from &#x27;./thermodynamicDiagram/TDDiagram.js&#x27;;
import PlotAltitudeDataArea from &#x27;./thermodynamicDiagram/PlotAltitudeDataArea.js&#x27;;
import { drawWindbarbInto } from &#x27;./thermodynamicDiagram/Functions.js&#x27;;
import WindbarbsProfile from &#x27;./thermodynamicDiagram/WindbarbsProfile.js&#x27;;
import WindspeedProfile from &#x27;./thermodynamicDiagram/WindspeedProfile.js&#x27;;
Expand All @@ -225,6 +226,7 @@ <h1>Source: index.js</h1>
SkewTlogPDiagram
},
DiagramSounding,
PlotAltitudeDataArea,
Hodograph,
TDDiagram,
functions: {
Expand All @@ -247,7 +249,7 @@ <h1>Source: index.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_Container.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ <h1>Source: modelviewer/Container.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_Display.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ <h1>Source: modelviewer/Display.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_NWPResources.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ <h1>Source: modelviewer/NWPResources.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_Node.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ <h1>Source: modelviewer/Node.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_OffsetVariable.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ <h1>Source: modelviewer/OffsetVariable.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_Resource.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ <h1>Source: modelviewer/Resource.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_Resources.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ <h1>Source: modelviewer/Resources.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_ResourcesTreeNode.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ <h1>Source: modelviewer/ResourcesTreeNode.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_TimeVariable.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h1>Source: modelviewer/TimeVariable.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_Variable.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ <h1>Source: modelviewer/Variable.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_VariableCollection.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h1>Source: modelviewer/VariableCollection.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_display_SelectNavigation.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ <h1>Source: modelviewer/display/SelectNavigation.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_display_Simple.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ <h1>Source: modelviewer/display/Simple.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_resource_Image.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ <h1>Source: modelviewer/resource/Image.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion doc/modelviewer_resource_Sounding.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ <h1>Source: modelviewer/resource/Sounding.js</h1>
<footer id="jsdoc-footer" class="jsdoc-footer">
<div id="jsdoc-footer-container">
<p>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 22, 2022.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.11 on October 23, 2023.
</p>
</div>
</footer>
Expand Down
Loading

0 comments on commit b85e353

Please sign in to comment.