1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Line 405 : 'errorback' should have been 'errback'

This commit is contained in:
theredspatula 2012-03-15 11:59:32 -07:00
parent f79ed9c941
commit 6f61b52943

View file

@ -402,7 +402,7 @@ var Promise = (function PromiseClosure() {
if (this.isResolved) {
var data = this.data;
callback.call(null, data);
} else if (this.isRejected && errorback) {
} else if (this.isRejected && errback) {
var error = this.error;
errback.call(null, error);
} else {