Skip to content

Commit 59b96b8

Browse files
1000370: Resolved CI issues in javascript-es6
1 parent 53f5599 commit 59b96b8

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

Document-Processing/PDF/PDF-Viewer/javascript-es6/annotations/annotation-types/strikethrough-annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Add the below `serviceUrl` in the `index.ts` file
155155

156156
### Add strikethrough annotation programmatically
157157

158-
Programmatically add strikethrough using the [addAnnotation](https://ej2.syncfusion.com/documentation/api/pdfviewer/annotation/#addannotation) method.
158+
Programmatically add strikethrough using the [addAnnotation](https://ej2.syncfusion.com/documentation/api/pdfviewer/annotation#addannotation) method.
159159

160160
Example:
161161

Document-Processing/PDF/PDF-Viewer/javascript-es6/annotations/annotation-types/underline-annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Add the below `serviceUrl` in the `index.ts` file
155155

156156
### Add underline annotation programmatically
157157

158-
Programmatically add underlines using the [addAnnotation](https://ej2.syncfusion.com/documentation/api/pdfviewer/annotation/#addannotation) method.
158+
Programmatically add underlines using the [addAnnotation](https://ej2.syncfusion.com/documentation/api/pdfviewer/annotation#addannotation) method.
159159

160160
Example:
161161

Document-Processing/PDF/PDF-Viewer/javascript-es6/getting-started-with-server-backed.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Getting started with TypeScript PDF Viewer (server-backed) | Syncfusion
4-
description: Learn how to set up and use the Syncfusion TypeScript PDF Viewer in server-backed mode using the EJ2 quickstart, including module injection and web service configuration.
3+
title: Getting started with server-backed TypeScript PDF Viewer | Syncfusion
4+
description: Learn how to set up and use the Syncfusion TypeScript PDF Viewer in server-backed mode, including module injection and web service configuration.
55
platform: document-processing
66
control: PDF Viewer
77
documentation: ug
@@ -198,7 +198,7 @@ Inject modules using the `PdfViewer.Inject` method.
198198
dotnet run
199199
```
200200

201-
6. The PDF Viewer server instance runs at `https://localhost:5001`. Navigate to `https://localhost:5001/pdfviewer` to see the default GET response. Bind this URL to the [serviceUrl](https://ej2.syncfusion.com/documentation/api/pdfviewer/#serviceurl) property of the PDF Viewer as shown below.
201+
6. The PDF Viewer server instance runs at `https://localhost:5001`. Navigate to `https://localhost:5001/pdfviewer` to see the default GET response. Bind this URL to the [serviceUrl](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#serviceurl) property of the PDF Viewer as shown below.
202202

203203
{% tabs %}
204204
{% highlight ts tabtitle="app.ts" %}

Document-Processing/PDF/PDF-Viewer/javascript-es6/getting-started.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: Getting started with TypeScript PDF Viewer (standalone) | Syncfusion
4-
description: Learn how to set up and use the Syncfusion TypeScript PDF Viewer in standalone mode using the EJ2 quickstart, including local resource configuration and module injection.
3+
title: Getting started with standalone TypeScript PDF Viewer | Syncfusion
4+
description: Learn how to set up and use the Syncfusion TypeScript PDF Viewer in standalone mode, including local resource configuration and module injection.
55
platform: document-processing
66
control: PDF Viewer
77
documentation: ug

Document-Processing/PDF/PDF-Viewer/javascript-es6/how-to/custom-context-menu.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
1010

1111
# Customize the context menu in PDF Viewer
1212

13-
PDF Viewer supports adding custom options to the context menu using the [addCustomMenu()](https://ej2.syncfusion.com/documentation/api/pdfviewer/#addcustommenu) method. Define actions for custom items with the [customContextMenuSelect()](https://ej2.syncfusion.com/documentation/api/pdfviewer/#customcontextMenuselect) method.
13+
PDF Viewer supports adding custom options to the context menu using the [addCustomMenu()](https://ej2.syncfusion.com/documentation/api/pdfviewer#addcustommenu) method. Define actions for custom items with the [customContextMenuSelect()](https://ej2.syncfusion.com/documentation/api/pdfviewer#customcontextMenuselect) method.
1414

1515
### Add a custom option
1616

@@ -127,7 +127,7 @@ Toggle the display of the default context menu. When the addCustomMenu parameter
127127

128128
#### Show or hide custom items before opening
129129

130-
Use [customContextMenuBeforeOpen()](https://ej2.syncfusion.com/documentation/api/pdfviewer/#customcontextMenubeforeopen) to hide or show custom options dynamically.
130+
Use [customContextMenuBeforeOpen()](https://ej2.syncfusion.com/documentation/api/pdfviewer#customcontextMenubeforeopen) to hide or show custom options dynamically.
131131

132132
```ts
133133

@@ -290,7 +290,7 @@ The following is the output of the custom context menu with customization.
290290
{% endtabs %}
291291

292292
N> To set up the **server-backed PDF Viewer**,
293-
Add the below [serviceUrl](https://ej2.syncfusion.com/documentation/api/pdfviewer/#serviceurl) in the `index.ts` file
293+
Add the below [serviceUrl](https://ej2.syncfusion.com/documentation/api/pdfviewer#serviceurl) in the `index.ts` file
294294
`viewer.serviceUrl = 'https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer/';`
295295

296296
{% previewsample "/document-processing/code-snippet/pdfviewer/javascript-es5/custom-context-menu" %}

Document-Processing/PDF/PDF-Viewer/javascript-es6/toolbar.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ document.getElementById('set').addEventListener('click', ()=> {
177177
{% endtabs %}
178178

179179
N> To set up the **server-backed PDF Viewer**,
180-
Add the below [serviceUrl](https://ej2.syncfusion.com/documentation/api/pdfviewer/#serviceurl) in the `index.ts` file
180+
Add the below [serviceUrl](https://ej2.syncfusion.com/documentation/api/pdfviewer#serviceurl) in the `index.ts` file
181181
`pdfviewer.serviceUrl = 'https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer';`
182182

183183
{% previewsample "/document-processing/code-snippet/pdfviewer/javascript-es6/toolbar/toolbar-method-cs1" %}
@@ -311,11 +311,11 @@ Add the below `serviceUrl` in the `index.ts` file
311311

312312
PDF Viewer allows you to customize(add, show, hide, enable, and disable) existing items in a toolbar.
313313

314-
* Add - New items can defined by [**CustomToolbarItemModel**](https://ej2.syncfusion.com/documentation/api/pdfviewer/customToolbarItemModel/) and with existing items in [**ToolbarSettings**](https://ej2.syncfusion.com/documentation/api/pdfviewer/toolbarSettings/) property. Newly added item click action can be defined in [`toolbarclick`](https://ej2.syncfusion.com/documentation/api/toolbar/clickEventArgs/).
314+
* Add - New items can defined by [**CustomToolbarItemModel**](https://ej2.syncfusion.com/documentation/api/pdfviewer/customToolbarItemModel) and with existing items in [**ToolbarSettings**](https://ej2.syncfusion.com/documentation/api/pdfviewer/toolbarSettings) property. Newly added item click action can be defined in [`toolbarclick`](https://ej2.syncfusion.com/documentation/api/toolbar/clickEventArgs).
315315

316-
* Show, Hide - Existing items can be shown or hidden using the [`ToolbarSettings`](https://ej2.syncfusion.com/documentation/api/pdfviewer/toolbarSettings/) property. Pre-defined toolbar items are available with [`ToolbarItem`](https://ej2.syncfusion.com/documentation/api/pdfviewer/toolbarItem/).
316+
* Show, Hide - Existing items can be shown or hidden using the [`ToolbarSettings`](https://ej2.syncfusion.com/documentation/api/pdfviewer/toolbarSettings/) property. Pre-defined toolbar items are available with [`ToolbarItem`](https://ej2.syncfusion.com/documentation/api/pdfviewer/toolbarItem).
317317

318-
* Enable, Disable - Toolbar items can be enabled or disable using [`enabletoolbaritem`](https://ej2.syncfusion.com/documentation/api/pdfviewer/toolbar/#enabletoolbaritem)
318+
* Enable, Disable - Toolbar items can be enabled or disable using [`enabletoolbaritem`](https://ej2.syncfusion.com/documentation/api/pdfviewer/toolbar#enabletoolbaritem)
319319

320320
{% tabs %}
321321
{% highlight js tabtitle="Standalone" %}
@@ -1527,7 +1527,7 @@ Sample :
15271527

15281528
## How to customize the default toolbar with desired tools
15291529

1530-
Customize the default toolbar with the required tools by using the [toolbarSettings](https://ej2.syncfusion.com/documentation/api/pdfviewer/#toolbarsettings) class of the PDF viewer.
1530+
Customize the default toolbar with the required tools by using the [toolbarSettings](https://ej2.syncfusion.com/documentation/api/pdfviewer#toolbarsettings) class of the PDF viewer.
15311531

15321532
The following code illustrates how to render the default toolbar with specific tools.
15331533

0 commit comments

Comments
 (0)