Skip to content

Commit 0b3667a

Browse files
committed
2 parents 217a1e6 + 98abe10 commit 0b3667a

File tree

9 files changed

+2
-9
lines changed

9 files changed

+2
-9
lines changed

foundational-api-samples/hello-world/blazor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ Inside the `wwwroot\index.html` file, we will initialize the license and necessa
283283
...
284284
<script src="_framework/blazor.webassembly.js"></script>
285285

286-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.3000/dist/dbr.bundle.min.js"></script>
286+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.3000/dist/dbr.bundle.js"></script>
287287
<script>
288288
/** LICENSE ALERT - README
289289
* To use the library, you need to first specify a license key using the API "initLicense()" as shown below.

foundational-api-samples/hello-world/hello-world.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ <h1>Hello World (Decode via Camera)</h1>
3535

3636
// Optional. Used to load wasm resources in advance, reducing latency between video playing and barcode decoding.
3737
Dynamsoft.Core.CoreModule.loadWasm();
38-
// // If the network is unstable or you prefer to self-host the SDK, uncomment the line below to define the root path of the engine files
3938
// Defined globally for easy debugging.
4039
let cameraEnhancer, cvRouter;
4140

foundational-api-samples/hello-world/pwa/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ We will try to turn our basic "Hello World" sample into a PWA. Follow these step
3737
<br />
3838
Results:
3939
<div id="results" style="width: 100%; height: 10vh; overflow: auto"></div>
40-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.3000/dist/dbr.bundle.min.js"></script>
40+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.3000/dist/dbr.bundle.js"></script>
4141
<script>
4242
if (location.protocol === "file:") {
4343
const message = `The page is opened via file:// and our SDKs may not work properly. Please open the page via https:// or host it on "http://localhost/".`;

foundational-api-samples/hello-world/read-an-image.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ <h1>Hello World (Read an Image)</h1>
3535

3636
// Optional. Preload "BarcodeReader" module for reading barcodes. It will save time on the initial decoding by skipping the module loading.
3737
Dynamsoft.Core.CoreModule.loadWasm();
38-
// // If the network is unstable or you prefer to self-host the SDK, uncomment the line below to define the root path of the engine files
3938
const resultsContainer = document.querySelector("#results");
4039

4140
let cvRouter; // an instance of CaptureVisionRouter

foundational-api-samples/others/debug/public/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ <h1 style="font-size: 1.5em">Read Barcodes from Camera - Debug</h1>
4747

4848
// Preload "BarcodeReader" module for reading barcodes. It will save time on the initial decoding by skipping the module loading.
4949
Dynamsoft.Core.CoreModule.loadWasm();
50-
// // If the network is unstable or you prefer to self-host the SDK, uncomment the line below to define the root path of the engine files
5150
const init = async () => {
5251
try {
5352
// Create a `CameraEnhancer` instance for camera control and a `CameraView` instance for UI control.

foundational-api-samples/use-case/fill-a-form-with-barcode-reading.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ <h3>Click each input box to fill in!</h3>
8383

8484
// Preload "BarcodeReader" module for reading barcodes. It will save time on the initial decoding by skipping the module loading.
8585
Dynamsoft.Core.CoreModule.loadWasm();
86-
// // If the network is unstable or you prefer to self-host the SDK, uncomment the line below to define the root path of the engine files
8786
const inputsContainer = document.getElementById("inputs-container");
8887
const loadingIndicator = document.getElementById("lib-load");
8988
const cameraViewContainer = document.getElementById("camera-view-container");

foundational-api-samples/use-case/locate-an-item-with-barcode/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,6 @@ <h6 id="camera-switch-notification"></h6>
324324

325325
// Preload "BarcodeReader" module for reading barcodes. It will save time on the initial decoding by skipping the module loading.
326326
Dynamsoft.Core.CoreModule.loadWasm();
327-
// // If the network is unstable or you prefer to self-host the SDK, uncomment the line below to define the root path of the engine files
328327

329328
const cameraViewContainer = document.getElementById("camera-view-container");
330329
const cameraViewTitle = document.getElementById("camera-view-title");

foundational-api-samples/use-case/read-a-drivers-license/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ <h1>Read a Driver's License</h1>
6969

7070
// Preload "BarcodeReader" module for reading barcodes. It will save time on the initial decoding by skipping the module loading.
7171
Dynamsoft.Core.CoreModule.loadWasm();
72-
// // If the network is unstable or you prefer to self-host the SDK, uncomment the line below to define the root path of the engine files
7372
Dynamsoft.DCP.CodeParserModule.loadSpec("AAMVA_DL_ID");
7473
Dynamsoft.DCP.CodeParserModule.loadSpec("AAMVA_DL_ID_WITH_MAG_STRIPE");
7574
Dynamsoft.DCP.CodeParserModule.loadSpec("SOUTH_AFRICA_DL");

foundational-api-samples/use-case/show-result-texts-on-the-video.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ <h3>Scan barcodes to display results as overlays on video</h3>
6464

6565
// Optional. Used to load wasm resources in advance, reducing latency between video playing and barcode decoding.
6666
Dynamsoft.Core.CoreModule.loadWasm();
67-
// // If the network is unstable or you prefer to self-host the SDK, uncomment the line below to define the root path of the engine files
6867
const resultsContainer = document.querySelector("#results");
6968

7069
(async () => {

0 commit comments

Comments
 (0)