-
Notifications
You must be signed in to change notification settings - Fork 47k
New issue
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
IE 10 Member not found. #7320
Comments
'change' custom events raise "Member not found" in <= IE10. To circumvent this, the SyntheticEvent class now checks for "typeof event.cancelBubble !== 'unknown'". This eliminates this exception and maintains the expected bubbling functionality. Addresses facebook#7320.
This isn't an issue on master, but I believe it's because of a change to controlled inputs here: 045f1a7. I could be wrong, but I think this is because it avoids creating a custom change event (But really, I don't know). This occurs when dispatching custom events that don't bubble (I believe) in IE. There are a couple of work arounds, one is to perform a check like https://bugs.jquery.com/ticket/10004 My intuition here says that this would some how hinder bubbling. But it does not! I tested this against IE9-11, Chrome, Firefox, and Safari. I've got a PR here with the details: |
'change' custom events raise "Member not found" in <= IE10. To circumvent this, the SyntheticEvent class now checks for "typeof event.cancelBubble !== 'unknown'". This eliminates this exception and maintains the expected bubbling functionality. Addresses facebook#7320.
'change' custom events raise "Member not found" in <= IE10. To circumvent this, the SyntheticEvent class now checks for "typeof event.cancelBubble !== 'unknown'". This eliminates this exception and maintains the expected bubbling functionality. Addresses facebook#7320.
'change' custom events raise "Member not found" in <= IE10. To circumvent this, the SyntheticEvent class now checks for "typeof event.cancelBubble !== 'unknown'". This eliminates this exception and maintains the expected bubbling functionality. Addresses facebook#7320.
'change' custom events raise "Member not found" in <= IE10. To circumvent this, the SyntheticEvent class now checks for "typeof event.cancelBubble !== 'unknown'". This eliminates this exception and maintains the expected bubbling functionality. Addresses facebook#7320.
'change' custom events raise "Member not found" in <= IE10. To circumvent this, the SyntheticEvent class now checks for "typeof event.cancelBubble !== 'unknown'". This eliminates this exception and maintains the expected bubbling functionality. Addresses #7320.
Explanation and similar change as facebook#7343 Addresses facebook#7320
Explanation, discussion, and similar change as facebook#7343 Addresses facebook#7320
Explanation, discussion, and similar change as facebook#7343 Addresses facebook#7320
Explanation, discussion, and similar change as facebook#7343 Addresses facebook#7320
I catch Member not found exception on react 15.2.1 and ie10
It is on input onChange in SyntheticEvent on event.cancelBubble = true; line
The text was updated successfully, but these errors were encountered: