-
Notifications
You must be signed in to change notification settings - Fork 723
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
Caret-Extension crashes in older browsers #384
Comments
Hi @JordanGaede! What browser is having trouble? That MDN page shows this syntax:
but then has a note:
Leading me to understand that the |
Currently its on a test of Firefox v3.0 |
Do people still use Firefox v3.0? And oops, you're right! I did find that IE8 and older need the script to use Derp, that's already in there... ok, I can add a |
Actually... on Wikipedia, it shows Firefox v3.0 usage at 0.08%... I bet that is all just from testing. |
Have a few people using Firefox 3.0, 3.2, 3.6. Thanks for that |
Ok, it's fixed in the master branch... I'll look to see what else is pending, I might bump the version for you. |
Ok, v1.25.2 is available. |
The following line - >
computed = window.getComputedStyle ? getComputedStyle( element ) : element.currentStyle;
crashes older browses.window.getComputedStyle
looks to require both parameters for older browsersi.e
var style = window.getComputedStyle(elem1, null)
https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle
The text was updated successfully, but these errors were encountered: