diff --git a/examples/components/simpleviewer.js b/examples/components/simpleviewer.js index 942a80a63..ff7e406ba 100644 --- a/examples/components/simpleviewer.js +++ b/examples/components/simpleviewer.js @@ -88,10 +88,11 @@ const loadingTask = pdfjsLib.getDocument({ cMapPacked: CMAP_PACKED, enableXfa: ENABLE_XFA, }); -loadingTask.promise.then(function (pdfDocument) { +(async function () { + const pdfDocument = await loadingTask.promise; // Document loaded, specifying document for the viewer and // the (optional) linkService. pdfViewer.setDocument(pdfDocument); pdfLinkService.setDocument(pdfDocument, null); -}); +})();