You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i try to pass a large file ,i found a bug .
For example , my pdf hava 120 pages and in the end No.100 appear at the end . No ,111 appear in the middle
this is the file http://vdisk.weibo.com/s/cT6E1uU_bsW73
u can upload in https://vadimdez.github.io/ng2-pdf-viewer/
The text was updated successfully, but these errors were encountered:
i think the answer is PdfViewerComponent.prototype.renderMultiplePages = function () { var container = this.element.nativeElement.querySelector('div'); this.removeAllChildNodes(container); for (var page = 1; page <= this._pdf.numPages; page++) { this.renderPage(page); }
For renderPage is asynchronous,so order wouldn't be guaranteed
and ,also when large pdf is passed. some of them maybe can not be displayed.
when i try to pass a large file ,i found a bug .
For example , my pdf hava 120 pages and in the end No.100 appear at the end . No ,111 appear in the middle
this is the file
http://vdisk.weibo.com/s/cT6E1uU_bsW73
u can upload in
https://vadimdez.github.io/ng2-pdf-viewer/
The text was updated successfully, but these errors were encountered: