Skip to content

Commit a1825c4

Browse files
update to internal commit e424277c
1 parent cd8d2f4 commit a1825c4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

programming/javascript/upgrade-guide/10to11.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In version 10.0.21 and earlier versions, you may need to reference several modul
2222
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/dce.js"></script>
2323
```
2424

25-
In version 11.0.3000 and above, you can also just use this line for simplicity:
25+
For versions after 10.0.21 but before 11.x, you only need to update the version number of `dynamsoft-barcode-reader-bundle`.
2626

2727
```html
2828
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.3000/dist/dbr.bundle.js"></script>

programming/javascript/user-guide/barcode-scanner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ new Dynamsoft.BarcodeScanner().launch().then(result=>alert(result.barcodeResults
5555

5656
When getting started with Barcode Scanner, we recommend [getting your own 30-day trial license](https://www.dynamsoft.com/customer/license/trialLicense/?product=dbr&utm_source=guide&package=js)
5757

58-
<!-- {% include trialLicense.html %} -->
58+
{% include trialLicense.html %}
5959

6060
> [!IMPORTANT]
6161
> The trial license can be renewed via the [customer portal](https://www.dynamsoft.com/customer/license/trialLicense/?product=dbr&utm_source=guide&package=js) twice, each time for another 15 days, giving you a total of 60 days to develop your own application using the solution. Please contact the [Dynamsoft Support Team](https://www.dynamsoft.com/company/contact/) if you need more time for a full evaluation.

programming/javascript/user-guide/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The complete code of the "Hello World" example is shown below
107107
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.3000/dist/dbr.bundle.js"></script>
108108
<script>
109109
Dynamsoft.License.LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9");
110-
Dynamsoft.Core.CoreModule.loadWasm(["dbr"]);
110+
Dynamsoft.Core.CoreModule.loadWasm();
111111
(async () => {
112112
let cvRouter = await Dynamsoft.CVR.CaptureVisionRouter.createInstance();
113113

0 commit comments

Comments
 (0)