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
the image dialog should close, but not the whole modal
The text was updated successfully, but these errors were encountered:
sounds like an event.stopProgogation or event.preventDefault. Did you give these a try?
Sorry, something went wrong.
Not sure about this one. I tried:
<input style={{display: "none"}} type="file" accept="image/*" onChange={this.onSelectImage} ref="fileUploader" onkeyup={function(e){if(e.keyCode===27) this.blur(),e.stopPropagation()}}/>
But that doesn't work
That could be a bug in your browser. In safari this is not a problem, because the input dialog automatically catches the ESC action.
No branches or pull requests
the image dialog should close, but not the whole modal
The text was updated successfully, but these errors were encountered: