1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Refactor the line that is longer than 80 characters in web/viewer.js.

This commit is contained in:
Kalervo Kujala 2011-08-09 23:42:50 +03:00
parent be5ecf2573
commit eebb47c072

View 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]));
}