Skip to content

Commit 593a747

Browse files
986927: Resolved spelling error
1 parent 0fa5771 commit 593a747

12 files changed

+12
-16
lines changed

Document-Processing/PDF/PDF-Viewer/vue/content-security-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The resultant meta tag is included within the `<head>` tag and resolves the CSP
4343
{% endhighlight %}
4444
{% endtabs %}
4545

46-
* Syncfusion PDF Viewer control when images are added as **blob** and **base64**, which are blocked on a strict CSP-enabled site.To overcome this restriction, it is necessary to add the imgage-src data: directive in the meta tag. To allow them, add the [`style-src 'self' blob:;`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/style-src) and [`imgage-src 'self' data:;`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/img-src) directives as follows.
46+
* Syncfusion PDF Viewer control when images are added as **blob** and **base64**, which are blocked on a strict CSP-enabled site.To overcome this restriction, it is necessary to add the image-src data: directive in the meta tag. To allow them, add the [`style-src 'self' blob:;`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/style-src) and [`image-src 'self' data:;`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/img-src) directives as follows.
4747

4848
{% tabs %}
4949
{% highlight razor tabtitle="HTML" %}

Document-Processing/PDF/PDF-Viewer/vue/how-to/add-annotation-in-text-search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ domainurl: ##DomainURL##
1212

1313
## Overview
1414

15-
A concise guide to adding rectangle annotations at highlighted text search results in the TypeScript PDF Viewer to visually emphasize matches and improve readability.
15+
A concise guide to adding rectangle annotations at highlighted text search results in the Vue PDF Viewer to visually emphasize matches and improve readability.
1616

1717
## Steps to add rectangle annotations on search result highlight
1818

Document-Processing/PDF/PDF-Viewer/vue/how-to/add-header-value.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,3 @@ export default {
5050
</script>
5151
```
5252

53-
Sample: How to add custom headers using ajaxRequestSettings
54-
[StackBlitz example](https://stackblitz.com/edit/typescript-nv1way?file=index.ts)

Document-Processing/PDF/PDF-Viewer/vue/how-to/annotation-selectors.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,5 +123,3 @@ function onAnnotationSelector() {
123123
</script>
124124
```
125125

126-
Sample: How to customize the annotation selector
127-
https://stackblitz.com/edit/typescript-u7xjdv?file=index.ts

Document-Processing/PDF/PDF-Viewer/vue/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Convert PDF Library bounds to PDF Viewer bounds | Syncfusion
4-
description: Learn how to convert PDF Library bounds into PDF Viewer bounds when exporting annotations, ensuring accurate placement in the TypeScript PDF Viewer.
4+
description: Learn how to convert PDF Library bounds into PDF Viewer bounds when exporting annotations, ensuring accurate placement in the Vue PDF Viewer.
55
control: PDF Viewer
66
platform: document-processing
77
documentation: ug

Document-Processing/PDF/PDF-Viewer/vue/how-to/extract-text-option.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Configure extractTextOption in TypeScript PDF Viewer | Syncfusion
4-
description: Learn how to use the extractTextOption property in the Syncfusion TypeScript PDF Viewer to control text extraction and memory usage.
3+
title: Configure extractTextOption in Vue PDF Viewer | Syncfusion
4+
description: Learn how to use the extractTextOption property in the Syncfusion Vue PDF Viewer to control text extraction and memory usage.
55
control: PDF Viewer
66
platform: document-processing
77
documentation: ug

Document-Processing/PDF/PDF-Viewer/vue/how-to/get-base64.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ domainurl: ##DomainURL##
1212

1313
### Overview
1414

15-
This guide shows how to get the base64-encoded value of a PDF loaded in the Syncfusion PDF Viewer using TypeScript. This is useful for sending the PDF as a base64 string or processing it on the client.
15+
This guide shows how to get the base64-encoded value of a PDF loaded in the Syncfusion PDF Viewer using Vue. This is useful for sending the PDF as a base64 string or processing it on the client.
1616

1717
### How to Retrieve Base64 Value
1818

Document-Processing/PDF/PDF-Viewer/vue/how-to/show-hide-annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
1010

1111
# Show or hide annotations in the PDF Viewer
1212

13-
Toggle annotation visibility in the Syncfusion PDF Viewer using TypeScript. Hide annotations for a cleaner view and show them again as needed.
13+
Toggle annotation visibility in the Syncfusion PDF Viewer using Vue. Hide annotations for a cleaner view and show them again as needed.
1414

1515
## Implementation Steps
1616

Document-Processing/PDF/PDF-Viewer/vue/save-pdf-file/to-amazon-s3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public IActionResult Download([FromBody] Dictionary<string, string> jsonObject)
241241

242242
N> Replace the placeholders with the actual AWS access key, secret key, and bucket name.
243243

244-
**Step 3:** Set the PDF Viewer properties in the TypeScript PDF Viewer component
244+
**Step 3:** Set the PDF Viewer properties in the Vue PDF Viewer component
245245

246246
Modify the [serviceUrl](https://ej2.syncfusion.com/documentation/api/pdfviewer/#serviceurl) property of the PDF Viewer component with the accurate URL of the web service, replacing `https://localhost:44396/pdfviewer` with the actual server URL. Set the `documentPath` property to the desired PDF file name to load from AWS S3, and ensure that the document exists in the target bucket.
247247

Document-Processing/PDF/PDF-Viewer/vue/save-pdf-file/to-azure-active-directory.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ domainurl: ##DomainURL##
1212

1313
### **Overview**
1414

15-
The TypeScript PDF Viewer component supports loading and saving PDF files with Azure Active Directory (AAD). The following steps describe how to securely load and store PDF documents using a server-backed web service.
15+
The Vue PDF Viewer component supports loading and saving PDF files with Azure Active Directory (AAD). The following steps describe how to securely load and store PDF documents using a server-backed web service.
1616

1717
### Steps to open the PDF file from Azure Active Directory
1818

@@ -93,7 +93,7 @@ The TypeScript PDF Viewer component supports loading and saving PDF files with A
9393

9494
### Step 6: Client-side configuration
9595

96-
1. Run the TypeScript sample:
96+
1. Run the Vue sample:
9797
- Start the Vue sample that includes the Syncfusion<sup style="font-size:70%">&reg;</sup> PDF Viewer.
9898

9999
2. Load a PDF from AAD:

0 commit comments

Comments
 (0)