Skip to content

Commit fbcb02a

Browse files
chore: build and documentation for release
1 parent 719c684 commit fbcb02a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+65
-49
lines changed

dist/maidr.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -7692,13 +7692,21 @@ class Control {
76927692

76937693
// testing for braille cursor routing
76947694
document.addEventListener('selectionchange', function (e) {
7695+
// notes:
7696+
// this basically works
7697+
// constants.braillInput.selectionStart is the key, and is the position,
7698+
// but it starts at 1, so we need to subtract 1 to get the actual position
7699+
// hard part is that we need to wire this through the whole script
7700+
// event is selectionchange, so we'll either need to refactor and do separate events + functions for this,
7701+
// or pull UpdateAll() etc into their own area so it can be triggered from anywhere
7702+
// ... ideally let's do that. Better yet, have a global UpdateAll, not per chart
7703+
76957704
const selection = document.getSelection();
76967705
console.log('Testing cursor routing', new Date().toLocaleTimeString());
76977706
console.log('selection: ', selection);
7698-
76997707
let pos = constants.brailleInput.selectionStart;
77007708
console.log('Position: ', pos);
7701-
position.x = pos;
7709+
position.x = pos - 1; // selection starts at 1, so we subtract 1 to get the actual position
77027710
let testEnd = lockPosition();
77037711

77047712
// update display / text / audio

dist/maidr.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/Audio.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1396,7 +1396,7 @@ <h4 class="name" id="playTone"><span class="type-signature"></span>playTone<span
13961396
<br class="clear">
13971397

13981398
<footer>
1399-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
1399+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
14001400
</footer>
14011401

14021402
<script>prettyPrint();</script>

docs/BarChart.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,7 @@ <h4 class="name" id="UnSelectPrevious"><span class="type-signature"></span>UnSel
10971097
<br class="clear">
10981098

10991099
<footer>
1100-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
1100+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
11011101
</footer>
11021102

11031103
<script>prettyPrint();</script>

docs/BoxPlot.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,7 @@ <h5>Returns:</h5>
13291329
<br class="clear">
13301330

13311331
<footer>
1332-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
1332+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
13331333
</footer>
13341334

13351335
<script>prettyPrint();</script>

docs/BoxplotRect.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ <h4 class="name" id="UpdateRect"><span class="type-signature"></span>UpdateRect<
408408
<br class="clear">
409409

410410
<footer>
411-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
411+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
412412
</footer>
413413

414414
<script>prettyPrint();</script>

docs/ChatLLM.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ <h5>Returns:</h5>
10341034
<br class="clear">
10351035

10361036
<footer>
1037-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
1037+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
10381038
</footer>
10391039

10401040
<script>prettyPrint();</script>

docs/Constants.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ <h3 class="subsection-title">Classes</h3>
181181
<br class="clear">
182182

183183
<footer>
184-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
184+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
185185
</footer>
186186

187187
<script>prettyPrint();</script>

docs/Constants_ConvertHexToRGBString.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ <h5>Returns:</h5>
239239
<br class="clear">
240240

241241
<footer>
242-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
242+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
243243
</footer>
244244

245245
<script>prettyPrint();</script>

docs/Constants_ConvertRGBStringToHex.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ <h5>Returns:</h5>
239239
<br class="clear">
240240

241241
<footer>
242-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
242+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
243243
</footer>
244244

245245
<script>prettyPrint();</script>

docs/Constants_GetStyleArrayFromString.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ <h5>Returns:</h5>
239239
<br class="clear">
240240

241241
<footer>
242-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
242+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
243243
</footer>
244244

245245
<script>prettyPrint();</script>

docs/Constants_GetStyleStringFromArray.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ <h5>Returns:</h5>
239239
<br class="clear">
240240

241241
<footer>
242-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
242+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
243243
</footer>
244244

245245
<script>prettyPrint();</script>

docs/Control.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ <h4 class="name" id="GetNextPrevFocusable"><span class="type-signature"></span>G
204204

205205
<dt class="tag-source">Source:</dt>
206206
<dd class="tag-source"><ul class="dummy"><li>
207-
<a href="controls.js.html">controls.js</a>, <a href="controls.js.html#line3212">line 3212</a>
207+
<a href="controls.js.html">controls.js</a>, <a href="controls.js.html#line3220">line 3220</a>
208208
</li></ul></dd>
209209

210210

@@ -344,7 +344,7 @@ <h5>Returns:</h5>
344344
<br class="clear">
345345

346346
<footer>
347-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
347+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
348348
</footer>
349349

350350
<script>prettyPrint();</script>

docs/Description.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ <h5>Parameters:</h5>
573573
<br class="clear">
574574

575575
<footer>
576-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
576+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
577577
</footer>
578578

579579
<script>prettyPrint();</script>

docs/Display.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1575,7 +1575,7 @@ <h4 class="name" id="toggleTextMode"><span class="type-signature"></span>toggleT
15751575
<br class="clear">
15761576

15771577
<footer>
1578-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
1578+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
15791579
</footer>
15801580

15811581
<script>prettyPrint();</script>

docs/HeatMap.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1493,7 +1493,7 @@ <h4 class="name" id="updateConstants"><span class="type-signature"></span>update
14931493
<br class="clear">
14941494

14951495
<footer>
1496-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
1496+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
14971497
</footer>
14981498

14991499
<script>prettyPrint();</script>

docs/HeatMapRect.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ <h4 class="name" id="UpdateRect"><span class="type-signature"></span>UpdateRect<
256256
<br class="clear">
257257

258258
<footer>
259-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
259+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
260260
</footer>
261261

262262
<script>prettyPrint();</script>

docs/Helper.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ <h5>Returns:</h5>
355355
<br class="clear">
356356

357357
<footer>
358-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
358+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
359359
</footer>
360360

361361
<script>prettyPrint();</script>

docs/Histogram.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ <h4 class="name" id="SetMaxMin"><span class="type-signature"></span>SetMaxMin<sp
422422
<br class="clear">
423423

424424
<footer>
425-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
425+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
426426
</footer>
427427

428428
<script>prettyPrint();</script>

docs/Layer0Point.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ <h5>Returns:</h5>
547547
<br class="clear">
548548

549549
<footer>
550-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
550+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
551551
</footer>
552552

553553
<script>prettyPrint();</script>

docs/Layer1Point.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ <h5>Returns:</h5>
547547
<br class="clear">
548548

549549
<footer>
550-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
550+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
551551
</footer>
552552

553553
<script>prettyPrint();</script>

docs/LinePlot.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ <h4 class="name" id="UpdateConstants"><span class="type-signature"></span>Update
725725
<br class="clear">
726726

727727
<footer>
728-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
728+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
729729
</footer>
730730

731731
<script>prettyPrint();</script>

docs/LogError.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ <h5>Parameters:</h5>
896896
<br class="clear">
897897

898898
<footer>
899-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
899+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
900900
</footer>
901901

902902
<script>prettyPrint();</script>

docs/Menu.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ <h5>Parameters:</h5>
824824
<br class="clear">
825825

826826
<footer>
827-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
827+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
828828
</footer>
829829

830830
<script>prettyPrint();</script>

docs/Point.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ <h5>Returns:</h5>
547547
<br class="clear">
548548

549549
<footer>
550-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
550+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
551551
</footer>
552552

553553
<script>prettyPrint();</script>

docs/Position.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ <h4 class="name" id="Position"><span class="type-signature"></span>new Position<
165165
<br class="clear">
166166

167167
<footer>
168-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
168+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
169169
</footer>
170170

171171
<script>prettyPrint();</script>

docs/Resources.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ <h5>Returns:</h5>
329329
<br class="clear">
330330

331331
<footer>
332-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
332+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
333333
</footer>
334334

335335
<script>prettyPrint();</script>

docs/Review.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ <h5>Parameters:</h5>
324324
<br class="clear">
325325

326326
<footer>
327-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
327+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
328328
</footer>
329329

330330
<script>prettyPrint();</script>

docs/ScatterPlot.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1427,7 +1427,7 @@ <h4 class="name" id="SetLineLayer"><span class="type-signature"></span>SetLineLa
14271427
<br class="clear">
14281428

14291429
<footer>
1430-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
1430+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
14311431
</footer>
14321432

14331433
<script>prettyPrint();</script>

docs/Segmented.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ <h4 class="name" id="UnSelectPrevious"><span class="type-signature"></span>UnSel
892892
<br class="clear">
893893

894894
<footer>
895-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
895+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
896896
</footer>
897897

898898
<script>prettyPrint();</script>

docs/Tracker.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,7 @@ <h5>Returns:</h5>
956956
<br class="clear">
957957

958958
<footer>
959-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
959+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
960960
</footer>
961961

962962
<script>prettyPrint();</script>

docs/audio.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ <h1 class="page-title">audio.js</h1>
638638
<br class="clear">
639639

640640
<footer>
641-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
641+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
642642
</footer>
643643

644644
<script>prettyPrint();</script>

docs/barplot.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ <h1 class="page-title">barplot.js</h1>
372372
<br class="clear">
373373

374374
<footer>
375-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
375+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
376376
</footer>
377377

378378
<script>prettyPrint();</script>

docs/boxplot.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ <h1 class="page-title">boxplot.js</h1>
797797
<br class="clear">
798798

799799
<footer>
800-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
800+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
801801
</footer>
802802

803803
<script>prettyPrint();</script>

docs/constants.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2593,7 +2593,7 @@ <h1 class="page-title">constants.js</h1>
25932593
<br class="clear">
25942594

25952595
<footer>
2596-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
2596+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
25972597
</footer>
25982598

25992599
<script>prettyPrint();</script>

docs/controls.js.html

+11-3
Original file line numberDiff line numberDiff line change
@@ -321,13 +321,21 @@ <h1 class="page-title">controls.js</h1>
321321

322322
// testing for braille cursor routing
323323
document.addEventListener('selectionchange', function (e) {
324+
// notes:
325+
// this basically works
326+
// constants.braillInput.selectionStart is the key, and is the position,
327+
// but it starts at 1, so we need to subtract 1 to get the actual position
328+
// hard part is that we need to wire this through the whole script
329+
// event is selectionchange, so we'll either need to refactor and do separate events + functions for this,
330+
// or pull UpdateAll() etc into their own area so it can be triggered from anywhere
331+
// ... ideally let's do that. Better yet, have a global UpdateAll, not per chart
332+
324333
const selection = document.getSelection();
325334
console.log('Testing cursor routing', new Date().toLocaleTimeString());
326335
console.log('selection: ', selection);
327-
328336
let pos = constants.brailleInput.selectionStart;
329337
console.log('Position: ', pos);
330-
position.x = pos;
338+
position.x = pos - 1; // selection starts at 1, so we subtract 1 to get the actual position
331339
let testEnd = lockPosition();
332340

333341
// update display / text / audio
@@ -3290,7 +3298,7 @@ <h1 class="page-title">controls.js</h1>
32903298
<br class="clear">
32913299

32923300
<footer>
3293-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
3301+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
32943302
</footer>
32953303

32963304
<script>prettyPrint();</script>

docs/display.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1225,7 +1225,7 @@ <h1 class="page-title">display.js</h1>
12251225
<br class="clear">
12261226

12271227
<footer>
1228-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
1228+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
12291229
</footer>
12301230

12311231
<script>prettyPrint();</script>

docs/global.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1141,7 +1141,7 @@ <h5>Parameters:</h5>
11411141
<br class="clear">
11421142

11431143
<footer>
1144-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
1144+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
11451145
</footer>
11461146

11471147
<script>prettyPrint();</script>

docs/heatmap.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ <h1 class="page-title">heatmap.js</h1>
452452
<br class="clear">
453453

454454
<footer>
455-
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sun Jun 16 2024 00:17:20 GMT+0000 (Coordinated Universal Time) using the Minami theme.
455+
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Mon Jun 17 2024 00:16:29 GMT+0000 (Coordinated Universal Time) using the Minami theme.
456456
</footer>
457457

458458
<script>prettyPrint();</script>

0 commit comments

Comments
 (0)