css-transition-group
css-transition-group copied to clipboard
CSS transition does not work for IE on SVG Elements.
in the CSSCore.js file on line 41: 'element.className = element.className + ' ' + className;' throws error: 'Assignment to read-only properties is not allowed in strict mode'
it seems that className for svg is readonly.
@Cloroxod try wrapping the svg in a div, and it works ok: https://stackoverflow.com/questions/36043677/react-dependencies-broken-in-ie11/36572689
Maybe a solution in there for the bug?