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
On iOS 12 when PWA is in "standalone" mode (installed) there is no way to correctly handle the "mailto:" link
<a href="mailto:[email protected]">test[dot]com</a> <a href="mailto:[email protected]" target="_blank">test[dot]com</a<
The only workaround found is to add a click event handler similar to:
()=>{ window.location.href = "mailto:[email protected]?subject=" + emailSubject + "&body=" + emailBody return }
On iOS 13 the standard usage works correctly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On iOS 12 when PWA is in "standalone" mode (installed) there is no way to correctly handle the "mailto:" link
The only workaround found is to add a click event handler similar to:
On iOS 13 the standard usage works correctly.
The text was updated successfully, but these errors were encountered: