1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Fix missing bracket.

This commit is contained in:
Brendan Dahl 2011-12-08 12:54:02 -08:00
parent 146cd8c861
commit f7207a51f8

View file

@ -238,7 +238,7 @@ var PDFImage = (function pdfImage() {
return this.imageReady && this.smaskReady;
},
fireReady: function fireReady() {
for (var i = 0; i < this.callbacks.length; ++i) {
for (var i = 0; i < this.callbacks.length; ++i)
this.callbacks[i]();
this.callbacks = [];
},