-
Notifications
You must be signed in to change notification settings - Fork 216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QRious not found since upgrade Chrome to latest version #130
Comments
did you try to create the object on window.onload ? |
window.addEventListener("load",function(){ |
Hi, Now without changing a line works, but until the chrome update was working fine. Not sure what was the problem |
better you use the code above, it's not good to create an aboject before the page is loaded anyhow. |
Hi,
My code was working fine until I updated chrome, since then this code returns:
new QRious
({
element: document.getElementById("qrcodecanvas"),
level: 'H',
padding: 0,
size: 250,
value: dataqr
});
Uncaught ReferenceError: QRious is not defined
the element is defined before the script code like this
Any suggestion?
Thanks
Luigi
The text was updated successfully, but these errors were encountered: