We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I get these warnings when running my Iframe component with the corresponding 'allow' variables set.
Unrecognized origin: 'microphone'. Unrecognized origin: 'camera'. Unrecognized origin: 'midi'.
This is the iFrame generating the warnings:
<Iframe url={pageUrl} width="100%" height="100%" id={'iframe__' + props.id} display="absolute" position="relative" frameBorder="0" allow="microphone camera midi" />
The text was updated successfully, but these errors were encountered:
allow takes different format: feature_name origin;
allow
feature_name origin;
So in your case it should be
allow="microphone *; camera *; midi *;"
Sorry, something went wrong.
No branches or pull requests
I get these warnings when running my Iframe component with the corresponding 'allow' variables set.
This is the iFrame generating the warnings:
The text was updated successfully, but these errors were encountered: