]> git.parisson.com Git - pdf.js.git/commitdiff
Fix missing bracket.
authorBrendan Dahl <brendan.dahl@gmail.com>
Thu, 8 Dec 2011 20:54:02 +0000 (12:54 -0800)
committerBrendan Dahl <brendan.dahl@gmail.com>
Thu, 8 Dec 2011 20:54:02 +0000 (12:54 -0800)
src/image.js

index adae24292f188802b9423cedecb16d77f4aefe71..c1eaf1c8f5ea3769888bfaa3f01910ef4d3e1537 100644 (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 = [];
     },