-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
IE browser issue #768
Comments
@frank-tenzing not sure if it's IE's only error, are you facing this issue with some kind of template (which probably contains some SVG element)? |
Hi @artf , what I have done after cloned the latest repo are Then when I run it on IE 11, And when I debugged it, |
@frank-tenzing thanks, but what about other browsers? |
@artf It is working fine with Chrome, but IE is the primary browser our client prefer to use. |
That snippet is from cash library and I think it's related to fabiospampinato/cash#131 |
Any progress on this fix? |
after using the boilerplate to start my plugin I was able to get GJS to work in all browsers. |
Thank you @artf this.getClearEl() returns NULL. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Hi @artf ,
Created this issue due to #214 has been closed ...
I cloned the latest repo and run it on IE 11, an error:
SCRIPT438: Object doesn't support property or method 'replace' - grapes.min.js (15612,7)
demonstrates on the console, when I clicked it, it jumped to the line in 'removeClass' function:
function removeClass(v, c) { if (v.classList) { v.classList.remove(c); } else { v.className = v.className.replace(c, ""); } }
The 'v.className' was 'SVGAnimatedString' type when I debug it, but there is no
replace
function for that type. What is supposed to do here and When will this function be called ? Thank you very much!The text was updated successfully, but these errors were encountered: