Skip to content

Commit b40caed

Browse files
update to internal commit 1c6c4022
1 parent ad5cf4a commit b40caed

File tree

6 files changed

+4
-68
lines changed

6 files changed

+4
-68
lines changed

_includes/sidelist-programming/programming-javascript-v10.0.21.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,10 +1148,6 @@
11481148
barcodes via video in iOS 16.7 or 17?</a
11491149
>
11501150
</li>
1151-
<li>
1152-
<a href="{{ site.js }}faq/enable-supported-barcode-format.html"
1153-
>How to Enable Specific Barcode Formats with Your License?</a>
1154-
</li>
11551151
</ul>
11561152
</li>
11571153
<li class="category">OTHERS</li>

_includes/sidelist-programming/programming-javascript-v10.2.1000.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1582,10 +1582,6 @@
15821582
barcodes via video in iOS 16.7 or 17?</a
15831583
>
15841584
</li>
1585-
<li>
1586-
<a href="{{ site.js }}faq/enable-supported-barcode-format.html"
1587-
>How to Enable Specific Barcode Formats with Your License?</a>
1588-
</li>
15891585
</ul>
15901586
</li>
15911587
<li class="category">OTHERS</li>

_includes/sidelist-programming/programming-javascript.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1674,10 +1674,6 @@
16741674
>What are the system requirements for running the latest version of Dynamsoft Barcode Reader?</a
16751675
>
16761676
</li>
1677-
<li>
1678-
<a href="{{ site.js }}faq/enable-supported-barcode-format.html"
1679-
>How to Enable Specific Barcode Formats with Your License?</a>
1680-
</li>
16811677
</ul>
16821678
</li>
16831679
<li lang="javascript"><a href="{{ site.license_activation }}index.html" class="otherLinkColour">License Initialization</a></li>

programming/javascript/faq/enable-supported-barcode-format.md

Lines changed: 0 additions & 49 deletions
This file was deleted.

programming/javascript/faq/index.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,4 @@ noTitleIndex: true
8585

8686
38. [Why isn't my webcam reading the barcode on my driver's license or ID card?](webcam-support-dense.md)
8787

88-
39. [What are the system requirements for running the latest version of Dynamsoft Barcode Reader?](system-requirement.md)
89-
90-
40. [How to Enable Specific Barcode Formats with Your License?](enable-supported-barcode-format.md
91-
)
88+
39. [What are the system requirements for running the latest version of Dynamsoft Barcode Reader?](system-requirement.md)

programming/javascript/user-guide/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ The complete code of the "Hello World" example is shown below
164164
165165
#### About the code
166166
167-
- `Dynamsoft.License.LicenseManager.initLicense()`: This method initializes the license for using the SDK in the application. Note that the string "**DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9**" used in this example points to an online license that requires a network connection to work. Read more on [Specify the license](#specify-the-license).
167+
- `Dynamsoft.License.LicenseManager.initLicense()`: This method initializes the license for using the SDK in the application. Note that the string "**DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9**" used in this example points to an online license that requires a network connection to work. Read more on [Specify the license](#1-specify-the-license).
168168
169169
- `Dynamsoft.Core.CoreModule.loadWasm(["dbr"])`: This is an optional code. Used to load wasm resources in advance, reducing latency between video playing and barcode decoding.
170170
@@ -181,11 +181,11 @@ The complete code of the "Hello World" example is shown below
181181
cvRouter.startCapturing("ReadSingleBarcode");
182182
```
183183
- **Dispatch Results to Listening Objects**
184-
- The processing results are returned through the [CapturedResultReceiver](https://www.dynamsoft.com/capture-vision/docs/core/architecture/output.html#captured-result-receiver?lang=js) interface. The `CapturedResultReceiver` object is registered to `cvRouter` via the method `addResultReceiver()`. For more information, please check out [Register a result receiver](#register-a-result-receiver).
184+
- The processing results are returned through the [CapturedResultReceiver](https://www.dynamsoft.com/capture-vision/docs/core/architecture/output.html#captured-result-receiver?lang=js) interface. The `CapturedResultReceiver` object is registered to `cvRouter` via the method `addResultReceiver()`. For more information, please check out [Register a result receiver](#step-4-register-a-result-receiver).
185185
```js
186186
cvRouter.addResultReceiver({/*The-CapturedResultReceiver-Object"*/});
187187
```
188-
- Also note that reading from video is extremely fast and there could be many duplicate results. We can use a [filter](#filter-the-results-important) with result deduplication enabled to filter out the duplicate results. The object is registered to `cvRouter` via the method `addResultFilter()`.
188+
- Also note that reading from video is extremely fast and there could be many duplicate results. We can use a [filter](#3-important-filter-the-results) with result deduplication enabled to filter out the duplicate results. The object is registered to `cvRouter` via the method `addResultFilter()`.
189189
```js
190190
cvRouter.addResultFilter(filter);
191191
```

0 commit comments

Comments
 (0)