]> git.parisson.com Git - pdf.js.git/commitdiff
Refactor the line that is longer than 80 characters in web/viewer.js.
authorKalervo Kujala <kkujala@>
Tue, 9 Aug 2011 20:42:50 +0000 (23:42 +0300)
committerKalervo Kujala <kkujala@>
Tue, 9 Aug 2011 20:42:50 +0000 (23:42 +0300)
web/viewer.js

index 50d6f8e1591d8098a348859c8ee701a67204a8ad..0307e7ea3824db99f1aee8f068dc79c575cf0e76 100644 (file)
@@ -104,7 +104,8 @@ var PDFView = {
     var thumbnails = this.thumbnails = [];
     for (var i = 1; i <= pagesCount; i++) {
       var page = pdf.getPage(i);
-      pages.push(new PageView(container, page, i, page.width, page.height, page.stats));
+      pages.push(new PageView(container, page, i, page.width, page.height,
+                              page.stats));
       thumbnails.push(new ThumbnailView(sidebar, pages[i - 1]));
     }