Closed jmp909 closed 8 years ago
IE8 (emulated in IE11) fails to meet this condition if (svg && /svg/i.test(svg.nodeName)) {
if (svg && /svg/i.test(svg.nodeName)) {
replacing it with this works if(svg)
if(svg)
not sure if it's just down to the emulated IE mode
thanks J
This test isn't used anymore as of v2.1.0, so this should be fixed. If you find that it's not, please re-open! 🍻
IE8 (emulated in IE11) fails to meet this condition
if (svg && /svg/i.test(svg.nodeName)) {
replacing it with this works
if(svg)
not sure if it's just down to the emulated IE mode
thanks J