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
An exception is thrown on this line: https://github.com/uberVU/mozaic/blob/master/core/widget_starter.coffee#L77 when you have SVG elements in DOM.
It seems to be quite common: http://stackoverflow.com/questions/12588913/svganimatedstring-missing-method-indexof
The fix would be that instead of:
el.className
to use
if el.className.baseVal? then el.className.baseVal else el.className
like in this fix from d3.js: https://github.com/jasondavies/d3/commit/7ab5e3567f6c5976c90e30d13e5b6ee3890590f1
The text was updated successfully, but these errors were encountered:
Fixes uberVU#92
9f54536
Handle logic corner case in isMutationRecord uberVU#92
1f0cc7d
valentinzberea
Successfully merging a pull request may close this issue.
An exception is thrown on this line: https://github.com/uberVU/mozaic/blob/master/core/widget_starter.coffee#L77
when you have SVG elements in DOM.
It seems to be quite common:
http://stackoverflow.com/questions/12588913/svganimatedstring-missing-method-indexof
The fix would be that instead of:
to use
like in this fix from d3.js: https://github.com/jasondavies/d3/commit/7ab5e3567f6c5976c90e30d13e5b6ee3890590f1
The text was updated successfully, but these errors were encountered: