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
https://codepen.io/jakemcallister-the-reactor/pen/jOemvbV
A basic example with with disableLocalFiles set to true.
<html lang="en"> <head> <title></title> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link href="https://releases.transloadit.com/uppy/v3.8.0/uppy.min.css" rel="stylesheet" /> </head> <body> <noscript>You need JavaScript enabled for this example to work.</noscript> <button id="uppyModalOpener">Open Modal</button> <script type="module"> import { Uppy, Dashboard, Webcam, } from "https://releases.transloadit.com/uppy/v3.8.0/uppy.min.mjs"; const uppy = new Uppy({ debug: true, autoProceed: false }) .use(Dashboard, { trigger: "#uppyModalOpener", disableLocalFiles: true }) .use(Webcam, { target: Dashboard }) </script> </body> </html>
This should:
On mac chrome it works as expected:
However on iOS safari it shows just an empty modal
The text was updated successfully, but these errors were encountered:
Has anyone got any ideas on this one?
Sorry, something went wrong.
Update AddFiles.jsx
a656c79
Uncouple the native camera and video buttons from the option disableLocalFiles to solve issue transloadit#4430
Update AddFiles.jsx (#4894)
93c5e0a
Uncouple the native camera and video buttons from the option disableLocalFiles to solve issue #4430
The fix was released with Uppy 3.22.0
arturi
No branches or pull requests
Initial checklist
Link to runnable example
https://codepen.io/jakemcallister-the-reactor/pen/jOemvbV
Steps to reproduce
A basic example with with disableLocalFiles set to true.
Expected behavior
This should:
Actual behavior
On mac chrome it works as expected:
However on iOS safari it shows just an empty modal
The text was updated successfully, but these errors were encountered: