From: Brendan Dahl Date: Thu, 8 Dec 2011 20:54:02 +0000 (-0800) Subject: Fix missing bracket. X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=f7207a51f89761113c8c07dcb48f6bfde7a6f057;p=pdf.js.git Fix missing bracket. --- diff --git a/src/image.js b/src/image.js index adae242..c1eaf1c 100644 --- a/src/image.js +++ b/src/image.js @@ -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 = []; },