Skip to content
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

Script errors in IE #21

Closed
danieldunderfelt opened this issue Oct 7, 2014 · 3 comments
Closed

Script errors in IE #21

danieldunderfelt opened this issue Oct 7, 2014 · 3 comments
Labels

Comments

@danieldunderfelt
Copy link

This script gives me site-breaking errors in IE. Although I use the normal init, not forced, the line

var value = rule.cssText;

in the method findDeclarations(rule) is the curprit. The error is Member not found. This breaks the rest of my javascript in IE10, IE11 seems to cope and carry on. But the errors are still there.

Is there anything you can do about this?

@rodneyrehm
Copy link
Owner

the following would hide the error, but effectively kill viewport-handling keyframe:

var value = '';
try {
  value = rule.cssText;
} catch (e) {}

which version are you running? 0.4.0?

@danieldunderfelt
Copy link
Author

The latest from NPM, 0.4.1.

@ImBobby
Copy link

ImBobby commented Oct 27, 2014

Experience the same problem in IE10. But oddly enough, it does work in IE9. Both IE are tested in Win7.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants