rahul2104 / reactjs-pdf-reader

PDF Reader in browser for React js
MIT License
22 stars 11 forks source link

MobilePDFReader doesn't use onDocumentComplete() #9

Open jasminnancy opened 3 years ago

jasminnancy commented 3 years ago

As the title states, the MobilePDFReader component is not doing anything with onDocumentComplete once passed to the component.

I suggest doing something like in PDFReader:

if (onDocumentComplete) {
   this.props.onDocumentComplete(pdf.numPages);
}