Skip to content

1234: VUE to HTML tab title changes #454

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions ej2-vue/pdfviewer/text-search.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Searches for the specified text or an array of strings within the document and r
Searches for the specified text within the document and returns the bounding rectangles of the matched text. The search can be case-sensitive based on the provided parameter. It returns the bounding rectangles for all pages in the document where the text was found. The below code snippet shows how to get the bounds of the given text:

{% tabs %}
{% highlight vue tabtitle="Standalone" %}
{% highlight html tabtitle="Standalone" %}

```html
<template>
Expand Down Expand Up @@ -211,7 +211,7 @@ PdfViewer: [Toolbar, Magnification, Navigation, LinkAnnotation, BookmarkView, Th
```

{% endhighlight %}
{% highlight vue tabtitle="Server-backed" %}
{% highlight html tabtitle="Server-backed" %}

```html
<template>
Expand Down Expand Up @@ -253,7 +253,7 @@ PdfViewer: [Toolbar, Magnification, Navigation, LinkAnnotation, BookmarkView, Th
Searches for the specified text within the document and returns the bounding rectangles of the matched text. The search can be case-sensitive based on the provided parameter. It returns the bounding rectangles for that page in the document where the text was found. The below code snippet shows how to get the bounds of the given text from the desired page:

{% tabs %}
{% highlight vue tabtitle="Standalone" %}
{% highlight html tabtitle="Standalone" %}

```html
<template>
Expand Down Expand Up @@ -289,7 +289,7 @@ PdfViewer: [Toolbar, Magnification, Navigation, LinkAnnotation, BookmarkView, Th
```

{% endhighlight %}
{% highlight vue tabtitle="Server-backed" %}
{% highlight html tabtitle="Server-backed" %}

```html
<template>
Expand Down Expand Up @@ -331,7 +331,7 @@ PdfViewer: [Toolbar, Magnification, Navigation, LinkAnnotation, BookmarkView, Th
Searches for an array of strings within the document and returns the bounding rectangles for each occurrence. The search can be case-sensitive based on the provided parameters. It returns the bounding rectangles for all pages in the document where the strings were found.

{% tabs %}
{% highlight vue tabtitle="Standalone" %}
{% highlight html tabtitle="Standalone" %}

```html
<template>
Expand Down Expand Up @@ -367,7 +367,7 @@ PdfViewer: [Toolbar, Magnification, Navigation, LinkAnnotation, BookmarkView, Th
```

{% endhighlight %}
{% highlight vue tabtitle="Server-backed" %}
{% highlight html tabtitle="Server-backed" %}

```html
<template>
Expand Down Expand Up @@ -409,7 +409,7 @@ PdfViewer: [Toolbar, Magnification, Navigation, LinkAnnotation, BookmarkView, Th
Searches for an array of strings within the document and returns the bounding rectangles for each occurrence. The search can be case-sensitive based on the provided parameters. It returns the bounding rectangles for these search strings on that particular page where the strings were found.

{% tabs %}
{% highlight vue tabtitle="Standalone" %}
{% highlight html tabtitle="Standalone" %}

```html
<template>
Expand Down Expand Up @@ -445,7 +445,7 @@ PdfViewer: [Toolbar, Magnification, Navigation, LinkAnnotation, BookmarkView, Th
```

{% endhighlight %}
{% highlight vue tabtitle="Server-backed" %}
{% highlight html tabtitle="Server-backed" %}

```html
<template>
Expand Down