You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Version 2.0.12
Redundant information in the top status bar removed.
Added support for remembering permission and last camera used. This feature is on by default. Can be turned on or off using rememberLastUsedCamera flag in Html5QrcodeScannerConfig. How to explicitly enable it:
functiononScanSuccess(decodedText,decodedResult){// handle success.}lethtml5QrcodeScanner=newHtml5QrcodeScanner("reader",{fps: 10,qrbox: 250,rememberLastUsedCamera: true// ^ set this to false to disable this.});html5QrcodeScanner.render(onScanSuccess);