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
Using the current next version (e9aca44) I encountered an error when adding popups to SVGCircleElements on IE 11. No errors on Firefox or Chrome.
Error: 'SVGGraphicsElement' is undefined semantic.js (10387,13)
The line in question is: if(target.width === 0 && target.height === 0 && SVGGraphicsElement && !(target.element instanceof SVGGraphicsElement)).
if(target.width === 0 && target.height === 0 && SVGGraphicsElement && !(target.element instanceof SVGGraphicsElement))
Changing it to: if(target.width === 0 && target.height === 0 && (typeof SVGGraphicsElement === undefined) && !(target.element instanceof SVGGraphicsElement))
if(target.width === 0 && target.height === 0 && (typeof SVGGraphicsElement === undefined) && !(target.element instanceof SVGGraphicsElement))
fixed the error for me and displayed the popup correctly on IE 11.
The text was updated successfully, but these errors were encountered:
Thanks, related #3043
Sorry, something went wrong.
Cleans up SVG logic #3774
ccfb0cd
Make casing consistent #3774
465358b
No branches or pull requests
Using the current next version (e9aca44) I encountered an error when adding popups to SVGCircleElements on IE 11. No errors on Firefox or Chrome.
Error: 'SVGGraphicsElement' is undefined
semantic.js (10387,13)
The line in question is:
if(target.width === 0 && target.height === 0 && SVGGraphicsElement && !(target.element instanceof SVGGraphicsElement))
.Changing it to:
if(target.width === 0 && target.height === 0 && (typeof SVGGraphicsElement === undefined) && !(target.element instanceof SVGGraphicsElement))
fixed the error for me and displayed the popup correctly on IE 11.
The text was updated successfully, but these errors were encountered: