Skip to content

Commit 731a656

Browse files
Merge pull request #373 from dynamsoft-docs/preview
update to internal commit 30186463
2 parents 20fc2e1 + 2dc13d6 commit 731a656

File tree

8 files changed

+11
-14
lines changed

8 files changed

+11
-14
lines changed

programming-old/javascript/samples-demos/helloworld-angular.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javas
4747

4848
> Note:
4949
>
50-
> * `license` specify a license key to use the library. You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js to get your own trial license good for 30 days.
50+
> * `license` specify a license key to use the library. You can visit [https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js](https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js) to get your own trial license good for 30 days.
5151
> * `engineResourcePath` tells the library where to get the necessary resources at runtime.
5252
5353
### Generate three components
@@ -122,6 +122,7 @@ export class VideoDecodeComponent implements OnInit {
122122
> * The method `createInstance()` is called to initialize the library as soon as the component initializes.
123123
> * To release resources timely, the `BarcodeScanner` instance is destroyed with the component in the callback `ngOnDestroy` .
124124
> * The `setUIElement()` method is used to define the user interface (UI) for the library using the native element in `video-decode.component.html`, which was copied in the previous step.
125+
125126
### Edit the img-decode component
126127

127128
* Replace the original code in `img-decode.component.html` with code below to select a local image via `input` element.
@@ -316,4 +317,4 @@ Run `ng build` to build the project. The build artifacts will be stored in the `
316317

317318
## Support
318319

319-
If you have any questions, feel free to contact Dynamsoft support via [email](mailto:[email protected]) or [live chat](https://www.dynamsoft.com/barcode-reader/sdk-javascript/) via the "Let's Chat" button.
320+
If you have any questions, feel free to contact Dynamsoft support via [email](mailto:[email protected]) or live chat via the "Chat" button.

programming-old/javascript/samples-demos/helloworld-nextjs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javas
4545
```
4646

4747
> Note:
48-
> * `license` specify a license key to use the library. You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js to get your own trial license good for 30 days.
48+
> * `license` specify a license key to use the library. You can visit [https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js](https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js) to get your own trial license good for 30 days.
4949
> * `engineResourcePath` tells the library where to get the necessary resources at runtime.
5050
5151
### Create a directory "components" and create the following files inside it to represent three components

programming-old/javascript/samples-demos/helloworld-nuxtjs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javas
4949

5050
> Note:
5151
>
52-
> * `license` specify a license key to use the library. You can visit `https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js` to get your own trial license good for 30 days.
52+
> * `license` specify a license key to use the library. You can visit [https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js](https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js) to get your own trial license good for 30 days.
5353
> * `engineResourcePath` tells the library where to get the necessary resources at runtime.
5454
5555
### Create a directory "components" and create the following files inside it to represent three components

programming-old/javascript/samples-demos/helloworld-reactjs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javas
4747

4848
> Note:
4949
>
50-
> * `license` specify a license key to use the library. You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js to get your own trial license good for 30 days.
50+
> * `license` specify a license key to use the library. You can visit [https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js](https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js) to get your own trial license good for 30 days.
5151
> * `engineResourcePath` tells the library where to get the necessary resources at runtime.
5252
5353
### Build directory structure
@@ -374,4 +374,4 @@ See the section about [deployment](https://facebook.github.io/create-react-app/d
374374

375375
## Support
376376

377-
If you have any questions, feel free to contact Dynamsoft support via [email](mailto:[email protected]) or [live chat](https://www.dynamsoft.com/barcode-reader/sdk-javascript/) via the "Let's Chat" button.
377+
If you have any questions, feel free to contact Dynamsoft support via [email](mailto:[email protected]) or live chat via the "Chat" button.

programming-old/javascript/samples-demos/helloworld-requireJS.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,3 @@ document.getElementById('readBarcode').onclick = async function() {
6262
}
6363
};
6464
```
65-
66-
You can try the sample code from:
67-
68-
* <a target = "_blank" href="https://demo.dynamsoft.com/samples/dbr/js/1.hello-world/11.read-video-requirejs.html">Read Barcodes from Camera - RequireJS - Demo</a>

programming-old/javascript/samples-demos/helloworld-vuejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javas
4747

4848
> Note:
4949
>
50-
> * `license` specify a license key to use the library. You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js to get your own trial license good for 30 days.
50+
> * `license` specify a license key to use the library. You can visit [https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js](https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js) to get your own trial license good for 30 days.
5151
> * `engineResourcePath` tells the library where to get the necessary resources at runtime.
5252
5353
### Create and edit the `VideoDecode` component

programming-old/javascript/samples-demos/helloworld-vuejsv3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javas
4848

4949
> Note:
5050
>
51-
> * `license` specify a license key to use the library. You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js to get your own trial license good for 30 days.
51+
> * `license` specify a license key to use the library. You can visit [https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js](https://www.dynamsoft.com/customer/license/trialLicense?utm_source=sample&product=dbr&package=js) to get your own trial license good for 30 days.
5252
> * `engineResourcePath` tells the library where to get the necessary resources at runtime.
5353
5454
### Create and edit the `VideoDecode` component

programming/javascript/user-guide/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ There are two options for downloading the SDK, and the usage for each is slightl
282282
```sh
283283
284284
# Compared with using CDN, you need to set up more resources.
285-
npm i [email protected].0 -E
286-
npm i [email protected].10 -E
285+
npm i [email protected].10 -E
286+
npm i [email protected].30 -E
287287
```
288288
289289
The resources are located at the path `node_modules/<pkg>`, without `@<version>`, so the script would be like:

0 commit comments

Comments
 (0)