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:
parent
be5ecf2573
commit
eebb47c072
1 changed files with 2 additions and 1 deletions
|
@ -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]));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue