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