Skip to content

Commit ddca4be

Browse files
committed
Remove useless comments
1 parent 252ba35 commit ddca4be

File tree

7 files changed

+0
-7
lines changed

7 files changed

+0
-7
lines changed

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/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)