Skip to content

Commit

Permalink
Fixing debounce bind
Browse files Browse the repository at this point in the history
  • Loading branch information
jcputney committed Oct 25, 2024
1 parent f659de6 commit 0921c70
Show file tree
Hide file tree
Showing 33 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion dist/aicc.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/aicc.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/aicc.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/aicc.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/aicc.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/aicc.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/aicc.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/aicc.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/scorm-again.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/scorm-again.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/scorm-again.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/scorm-again.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/scorm12.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/scorm12.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/scorm12.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/scorm12.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/scorm2004.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/scorm2004.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/scorm2004.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/scorm2004.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/scorm-again.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/scorm-again.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/scorm-again.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/scorm-again.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/scorm12.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/scorm12.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/scorm12.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/scorm12.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/scorm2004.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/scorm2004.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/scorm2004.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/scorm2004.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/BaseAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ export default abstract class BaseAPI implements IBaseAPI {
)
) {
if (this.settings.asyncCommit) {
debounce(this.storeData, 500, false)(false);
debounce(this.storeData.bind(this), 500, false)(false);

returnValue = APIConstants.global.SCORM_TRUE;
} else {
Expand Down

0 comments on commit 0921c70

Please sign in to comment.