mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
Fixes typo in promises implementation for legacy browsers
This commit is contained in:
parent
9b9e2a3d63
commit
41faa78368
1 changed files with 1 additions and 1 deletions
|
@ -1323,7 +1323,7 @@ PDFJS.createPromiseCapability = createPromiseCapability;
|
|||
|
||||
then: function Promise_then(onResolve, onReject) {
|
||||
var nextPromise = new Promise(function (resolve, reject) {
|
||||
this.resolve = reject;
|
||||
this.resolve = resolve;
|
||||
this.reject = reject;
|
||||
});
|
||||
this._handlers.push({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue