]> git.parisson.com Git - pdf.js.git/commitdiff
cleanup
authorsbarman <sbarman@L3CWZ5T.(none)>
Wed, 6 Jul 2011 17:44:01 +0000 (10:44 -0700)
committersbarman <sbarman@L3CWZ5T.(none)>
Wed, 6 Jul 2011 17:44:01 +0000 (10:44 -0700)
pdf.js

diff --git a/pdf.js b/pdf.js
index b07ef74e70f820fb503418c9a07393b568789a24..d183072c16a9f687da35934daa4abfe612fab062 100644 (file)
--- a/pdf.js
+++ b/pdf.js
@@ -4792,9 +4792,9 @@ var PDFImage = (function() {
     this.height = dict.get2('Height', 'H');
 
     if (this.width < 1 || this.height < 1)
-  error('Invalid image width or height');
+      error('Invalid image width or height');
 
-this.interpolate = dict.get2('Interpolate', 'I') || false;
+    this.interpolate = dict.get2('Interpolate', 'I') || false;
     this.imageMask = dict.get2('ImageMask', 'IM') || false;
 
     var bitsPerComponent = image.bitsPerComponent;