-
Notifications
You must be signed in to change notification settings - Fork 20
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
event bubbling and IE #11
Comments
you would need IE8 support in |
Basic support for IE8 is already there. The only thing missing is |
oh crap i was thinking of component/event. as long as it's not bloated i don't think it'll be an issue. |
the substitutes thing seems like a cool idea though. having workarounds for all of IE's quirks would definitely introduce a lot of bloat. I just wish nobody used IE, haha. |
here's how jQuery does it: https://github.com/jquery/jquery/blob/1.9-stable/src/event.js#L750 |
LOL oh god |
IE versions < 9 have a bug where some events (e.g.
submit
andreset
) does not bubble. I don't necessarily thinkdelegate
is the place for hacky workarounds, although the patch would be relatively small. Also, It would make libraries likecomponent/events
work consistently in IE8. What do you think?The text was updated successfully, but these errors were encountered: