Skip to content

Commit

Permalink
Merge pull request #2 from michaelsharman/white-noise
Browse files Browse the repository at this point in the history
Added a white noise audio player extension
  • Loading branch information
michaelsharman authored Mar 8, 2024
2 parents 837da4f + 088a8bd commit fd03e46
Show file tree
Hide file tree
Showing 53 changed files with 2,386 additions and 2,613 deletions.
2 changes: 1 addition & 1 deletion docs/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Assessment_Activity.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Assessment_App.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Assessment_Diagnostics.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Assessment_Items.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Assessment_Player.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Assessment_Questions.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Assessment_Sections.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Authoring_App.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Authoring_Diagnostics.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Authoring_Navigation.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Authoring_Widgets.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

469 changes: 469 additions & 0 deletions docs/module-Extensions_Assessment_whiteNoise.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/module-Utils_Logger.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion jsdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"hardwrap": false,
"idInHeadings": true
},
"recurseDepth": 5,
"recurseDepth": 6,
"sourceType": "module",
"source": {
"include": ["src"],
Expand Down
3,866 changes: 1,333 additions & 2,533 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@caspingus/lt",
"version": "2.6.0",
"version": "2.7.0",
"description": "A utility library of helpers and tools for working with Learnosity APIs.",
"main": "src/index.js",
"author": "michael@learnosity.com",
Expand All @@ -22,6 +22,7 @@
"copy-webpack-plugin": "^12.0.2",
"docdash": "^2.0.2",
"jest": "^29.6.4",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1"
},
Expand All @@ -35,6 +36,7 @@
"collectCoverage": true
},
"dependencies": {
"howler": "^2.2.4",
"mousetrap": "^1.6.5",
"platform-detect": "^3.0.1",
"shuffle-seed": "^1.1.6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import * as activity from '../../../core/activity';
* Listens for the item load event and appends
* ` of {totalItems}` to the aria-label for the
* previous and next buttons.
* @module _Extensions/Assessment/ariaCountOnNav
* @module Extensions/Assessment/ariaCountOnNav
*/

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import * as item from '../../../core/items';
* items with 2 columns) providing the ability for the end user
* to resize the layout by dragging the element left or right.
* <p><img src="https://raw.githubusercontent.com/michaelsharman/LT/main/src/assets/images/resize.gif" alt="" width="900"></p>
* @module _Extensions/Assessment/columnResizer
* @module Extensions/Assessment/columnResizer
*/

const state = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import * as shuffleSeed from 'shuffle-seed';
* Hides a number of MCQ distractors/alternatives, that aren't
* the correct answer, as an accommodation capability for
* students wanting to avoid cognitive load.
* @module _Extensions/Assessment/hideAlternatives
* @module Extensions/Assessment/hideAlternatives
*/

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as Mousetrap from 'mousetrap';
*
* Enables keyboard shortcuts to perform an action against
* a question or on the assessment player.
* @module _Extensions/Assessment/keyboardShortcuts
* @module Extensions/Assessment/keyboardShortcuts
*/

const state = {
Expand Down
2 changes: 1 addition & 1 deletion src/assessment/extensions/accessibility/ux/magnifier.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import * as items from '../../../core/items';
* - make movable via keyboard
*
* <p><img src="https://raw.githubusercontent.com/michaelsharman/LT/main/src/assets/images/magnifier.png" alt="" width="800"></p>
* @module _Extensions/Assessment/magnifier
* @module Extensions/Assessment/magnifier
*/

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import * as question from '../../../core/questions';
* - columns
*
* <p><img src="https://raw.githubusercontent.com/michaelsharman/LT/main/src/assets/images/mcqprefix.png" alt="" width="660"></p>
* @module _Extensions/Assessment/mcqLabelPrefix
* @module Extensions/Assessment/mcqLabelPrefix
*/

const state = {
Expand Down
2 changes: 1 addition & 1 deletion src/assessment/extensions/accessibility/ux/pageOverlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* high contrast, or blue light.
*
* <p><img src="https://raw.githubusercontent.com/michaelsharman/LT/main/src/assets/images/pageoverlay.png" alt="" width="860"></p>
* @module _Extensions/Assessment/pageOverlay
* @module Extensions/Assessment/pageOverlay
*/

const state = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import * as question from '../../../core/questions';
* See the `type` property for each type here https://reference.learnosity.com/questions-api/questiontypes
*
* <p><img src="https://raw.githubusercontent.com/michaelsharman/LT/main/src/assets/images/resetresponse.gif" alt="" width="600"></p>
* @module _Extensions/Assessment/resetResponse
* @module Extensions/Assessment/resetResponse
*/

const state = {
Expand Down
2 changes: 1 addition & 1 deletion src/assessment/extensions/accessibility/ux/toggleTimer.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import logger from '../../../../utils/logger';
* clock icon. It's a future TODO to rectify this extension
* in the narrowest layout.
* <p><img src="https://raw.githubusercontent.com/michaelsharman/LT/main/src/assets/images/toggletimer.gif" alt="Animated gif showing the toggle timer feature" width="900"></p>
* @module _Extensions/Assessment/toggleTimer
* @module Extensions/Assessment/toggleTimer
*/

const state = {
Expand Down
Loading

0 comments on commit fd03e46

Please sign in to comment.