Copy link to clipboard
Copied
Can I declare adobeDCView instance variable only once? In case I need to render multiple PDF files on a single page, because I notice .js downloading multiple times unnecessarily depending on the number of files, I have performance concerns about the rendering of the web page and it consumes a lot of browser memory. The reason I want to solve this issue is because of the user interface.
Copy link to clipboard
Copied
You'll need to have a new adobeDCView object per document.
Copy link to clipboard
Copied
It's ok. Thank you.