Modules

Events


proxyLoaded

Event emitted when the proxy iframe finishes loading. This event comes from the DOMContentLoaded event attached to the proxy website.

Example
WebViewer(...)
    .then((instance) => {
      const { docViewer } = instance;
      docViewer.addEventListener('proxyLoaded', listener);
    });