1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Merge pull request #15473 from nmtigor/fix_bugs_9

Fix commFunc typo in the SandboxSupportBase.destroy method
This commit is contained in:
Jonas Jenwald 2022-09-20 12:15:59 +02:00 committed by GitHub
commit 09b54a8c9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ class SandboxSupportBase {
}
destroy() {
this.commFunc = null;
this.commFun = null;
this.timeoutIds.forEach(([_, id]) => this.win.clearTimeout(id));
this.timeoutIds = null;
}