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
must find a way to debounce this.
somebody else discovered this behavior long time ago: facebook/react#10871
seems to still be there.
The text was updated successfully, but these errors were encountered:
Howdy,
I had a similar issue with the following code
items[i].onfocusout = function () {}
The focusout event is called twice only in Safari. My server would receive two requests and the UI would show a notifications after each request.
However, I updated the code to using the addEventListener function and it resolved my issue. Now Safari only triggers once.
items[i].addEventListener("focusout", function() {});
Sorry, something went wrong.
No branches or pull requests
must find a way to debounce this.
somebody else discovered this behavior long time ago: facebook/react#10871
seems to still be there.
The text was updated successfully, but these errors were encountered: