Merge pull request #318 from kkujala/master

Refactor the line that is longer than 80 characters in web/viewer.js.
This commit is contained in:
Chris Jones 2011-08-09 13:57:56 -07:00
commit ec9b3d67af

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