From 734caab74705cf6b4f4522154fed8515220bc35f Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Tue, 10 Oct 2023 09:34:39 +0200 Subject: [PATCH] Update the "Interactive examples" links (PR 17055 follow-up) The examples themselves were updated to account for JavaScript modules, which didn't require changing the actual URLs. However, since it seems that JSFiddle doesn't support JavaScript modules in its separate "JavaScript" editing-area we need to change how we embed the examples to avoid showing a blank "JavaScript"-tab. --- docs/contents/examples/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/contents/examples/index.md b/docs/contents/examples/index.md index 64f11e678..adeb2b498 100644 --- a/docs/contents/examples/index.md +++ b/docs/contents/examples/index.md @@ -83,17 +83,17 @@ var scaledViewport = page.getViewport({ scale: scale, }); The example demonstrates how promises can be used to handle errors during loading. It also demonstrates how to wait until a page is loaded and rendered. - + ### Hello World using base64 encoded PDF The PDF.js can accept any decoded base64 data as an array. - + ### Previous/Next example The same canvas cannot be used to perform to draw two pages at the same time -- the example demonstrates how to wait on previous operation to be complete. - +