Skip to content

Commit 7458eb0

Browse files
991876: Resolved CI failures
1 parent 7e414b6 commit 7458eb0

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

Document-Processing/PDF/PDF-Viewer/angular/how-to/load-document-after-resources-loaded.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In Standalone mode, the Angular PDF Viewer downloads its PDFium runtime assets (
1414

1515
## When does resourcesLoaded trigger?
1616

17-
The `resourcesLoaded` event fires once the viewer finishes loading all required PDFium assets. At this point, it is safe to call the [`load`](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/#load) method to open a document (by URL or Base64).
17+
The `resourcesLoaded` event fires once the viewer finishes loading all required PDFium assets. At this point, it is safe to call the [`load`](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer#load) method to open a document (by URL or Base64).
1818

1919
## How to Load Document after resourcesLoaded
2020

@@ -90,11 +90,11 @@ export class AppComponent {
9090

9191
- Always set a valid `resourceUrl` when using the Standalone PDF Viewer. If the path is incorrect or blocked by the network, the event cannot fire.
9292
- Load documents inside `resourcesLoaded`. This guarantees the PDFium runtime is ready and prevents intermittent errors on slower networks.
93-
- The event fires for the viewer’s asset load lifecycle, not for every document load. After it fires once, you can safely call `load` again later (for example, in response to user actions) without waiting for the event.
93+
- The event fires for the viewer’s asset load life cycle, not for every document load. After it fires once, you can safely call `load` again later (for example, in response to user actions) without waiting for the event.
9494

9595
## See also
9696

97-
- [Events in Angular PDF Viewer](../events/#resourcesloaded)
97+
- [Events in Angular PDF Viewer](../events#resourcesloaded)
9898
- [Open PDF files](../open-pdf-files)
9999
- [Save PDF files](../save-pdf-files)
100100
- [Getting started](../getting-started)

Document-Processing/PDF/PDF-Viewer/asp-net-core/how-to/load-document-after-resources-loaded.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Load document after resources Loaded ASP.NET Core PDF Viewer | Syncfusion
3+
title: Load document after resources Loaded Core PDF Viewer | Syncfusion
44
description: Learn here how to load a PDF only after assets are ready in the Syncfusion ASP.NET Core PDF Viewer (Standalone) using the resourcesLoaded event.
55
platform: document-processing
66
control: PDF Viewer
@@ -67,11 +67,11 @@ The resourcesLoaded event fires once the viewer finishes loading all required PD
6767

6868
- Always set a valid resourceUrl when using the Standalone PDF Viewer. If the path is incorrect or blocked by the network, the event cannot fire.
6969
- Load documents inside resourcesLoaded. This guarantees the PDFium runtime is ready and prevents intermittent errors on slower networks.
70-
- The event fires for the viewer’s asset load lifecycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
70+
- The event fires for the viewer’s asset load life cycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
7171

7272
## See also
7373

74-
- [Events in ASP.NET Core PDF Viewer](../event/#resourcesloaded)
74+
- [Events in ASP.NET Core PDF Viewer](../event#resourcesloaded)
7575
- [Open PDF files](../open-pdf-files)
7676
- [Save PDF files](../save-pdf-files)
7777
- [Getting started](../getting-started)

Document-Processing/PDF/PDF-Viewer/asp-net-mvc/how-to/load-document-after-resources-loaded.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Load document after resources Loaded ASP.NET MVC PDF Viewer | Syncfusion
3+
title: Load document after resources Loaded MVC PDF Viewer | Syncfusion
44
description: Learn here how to load a PDF only after assets are ready in the Syncfusion ASP.NET Core PDF Viewer (Standalone) using the resourcesLoaded event.
55
platform: document-processing
66
control: PDF Viewer
@@ -60,11 +60,11 @@ The resourcesLoaded event fires once the viewer finishes loading all required PD
6060

6161
- Always set a valid resourceUrl when using the Standalone PDF Viewer. If the path is incorrect or blocked by the network, the event cannot fire.
6262
- Load documents inside resourcesLoaded. This guarantees the PDFium runtime is ready and prevents intermittent errors on slower networks.
63-
- The event fires for the viewer’s asset load lifecycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
63+
- The event fires for the viewer’s asset load life cycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
6464

6565
## See also
6666

67-
- [Events in ASP.NET MVC PDF Viewer](../event/#resourcesloaded)
67+
- [Events in ASP.NET MVC PDF Viewer](../event#resourcesloaded)
6868
- [Open PDF files](../open-pdf-files)
6969
- [Save PDF files](../save-pdf-files)
7070
- [Getting started](../getting-started)

Document-Processing/PDF/PDF-Viewer/javascript-es5/how-to/load-document-after-resources-loaded.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ function onResourcesLoaded() {
5353

5454
- Always set a valid resourceUrl when using the Standalone PDF Viewer. If the path is incorrect or blocked by the network, the event cannot fire.
5555
- Load documents inside resourcesLoaded. This guarantees the PDFium runtime is ready and prevents intermittent errors on slower networks.
56-
- The event fires for the viewer’s asset load lifecycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
56+
- The event fires for the viewer’s asset load life cycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
5757

5858
## See also
5959

60-
- [Events in JavaScript PDF Viewer](../event/#resourcesloaded)
60+
- [Events in JavaScript PDF Viewer](../event#resourcesloaded)
6161
- [Open PDF files](../open-pdf-files)
6262
- [Save PDF files](../save-pdf-files)
6363
- [Getting started](../getting-started)

Document-Processing/PDF/PDF-Viewer/javascript-es6/how-to/load-document-after-resources-loaded.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ viewer.appendTo('#PdfViewer');
5656

5757
- Always set a valid resourceUrl when using the Standalone PDF Viewer. If the path is incorrect or blocked by the network, the event cannot fire.
5858
- Load documents inside resourcesLoaded. This guarantees the PDFium runtime is ready and prevents intermittent errors on slower networks.
59-
- The event fires for the viewer’s asset load lifecycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
59+
- The event fires for the viewer’s asset load life cycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
6060

6161
## See also
6262

63-
- [Events in JavaScript PDF Viewer](../event/#resourcesloaded)
63+
- [Events in JavaScript PDF Viewer](../event#resourcesloaded)
6464
- [Open PDF files](../open-pdf-files)
6565
- [Save PDF files](../save-pdf-files)
6666
- [Getting started](../getting-started)

Document-Processing/PDF/PDF-Viewer/react/how-to/load-document-after-resources-loaded.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,11 @@ root.render(<App />);
105105
106106
- Always set a valid resourceUrl when using the Standalone PDF Viewer. If the path is incorrect or blocked by the network, the event cannot fire.
107107
- Load documents inside resourcesLoaded. This guarantees the PDFium runtime is ready and prevents intermittent errors on slower networks.
108-
- The event fires for the viewer’s asset load lifecycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
108+
- The event fires for the viewer’s asset load life cycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
109109
110110
## See also
111111
112-
- [Events in React PDF Viewer](../events/#resourcesloaded)
112+
- [Events in React PDF Viewer](../events#resourcesloaded)
113113
- [Open PDF files](../open-pdf-files)
114114
- [Save PDF files](../save-pdf-files)
115115
- [Getting started](../getting-started)

Document-Processing/PDF/PDF-Viewer/vue/how-to/load-document-after-resources-loaded.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,11 @@ export default {
101101

102102
- Always set a valid resourceUrl when using the Standalone PDF Viewer. If the path is incorrect or blocked by the network, the event cannot fire.
103103
- Load documents inside resourcesLoaded. This guarantees the PDFium runtime is ready and prevents intermittent errors on slower networks.
104-
- The event fires for the viewer’s asset load lifecycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
104+
- The event fires for the viewer’s asset load life cycle, not for every document load. After it fires once, you can safely call load again later (for example, in response to user actions) without waiting for the event.
105105

106106
## See also
107107

108-
- [Events in Vue PDF Viewer](../event/#resourcesloaded)
108+
- [Events in Vue PDF Viewer](../event#resourcesloaded)
109109
- [Open PDF files](../open-pdf-files)
110110
- [Save PDF files](../save-pdf-files)
111111
- [Getting started](../getting-started)

0 commit comments

Comments
 (0)