-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ui example fix for combined scanning
- Loading branch information
Luka
committed
May 1, 2021
1 parent
a127bc4
commit e0bc560
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,7 +69,11 @@ | |
el.engineLocation = "https://unpkg.com/@microblink/[email protected]/resources/"; | ||
|
||
// Enable option to scan both document sides | ||
el.recognizerOptions = [ "captureBothDocumentSides" ]; | ||
el.recognizerOptions = { | ||
'BlinkIdImageCaptureRecognizer': { | ||
captureBothDocumentSides: true | ||
} | ||
} | ||
|
||
// Create instance of client library - for more information see `client-library/README.md` file | ||
const client = new Client.Client( | ||
|