-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
mouseenter: Object doesn't support property or method 'contains' #17225
Comments
Thanks for reporting! @simonihmig - Any ideas off the top of your head? |
@amk221 I assume this was an
Indeed. I quickly booted my VM with IE11, and it seems it doesn't support I had a quick look how the jQuery-based implementation works around this, and it seams jQuery (or rather Sizzle) has a fallback implementation here: https://github.com/jquery/jquery/blob/e743cbd28553267f955f71ea7248377915613fd9/external/sizzle/dist/sizzle.js#L860-L868 I guess we can flag this as a bug then! I can try to provide a fix hopefully soon... |
Ah @simonihmig, yes - thank you! |
…G elements in IE11 IE11 does not support `Node#contains()` on SVG elements, so in that case a custom fallback implementation is used Fixes emberjs#17225
@rwjblue @simonihmig is ie11 w/o jQuery officially supported ? if so, this is a bug correct? |
…G elements in IE11 IE11 does not support `Node#contains()` on SVG elements, so in that case a custom fallback implementation is used Fixes emberjs#17225
Yep, updated the labels. |
…G elements in IE11 IE11 does not support `Node#contains()` on SVG elements, so in that case a custom fallback implementation is used Fixes emberjs#17225
With
"jquery-integration": false
I'm gettingObject doesn't support property or method 'contains'
in IE11. It may have something to do with SVG.ember.js/packages/@ember/-internals/views/lib/system/event_dispatcher.js
Line 338 in 6264318
Having to delay our jQuery-removal celebrations :)
The text was updated successfully, but these errors were encountered: