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

breaks on pages with no CSS rules #2

Closed
glasserc opened this issue Jan 31, 2014 · 1 comment
Closed

breaks on pages with no CSS rules #2

glasserc opened this issue Jan 31, 2014 · 1 comment

Comments

@glasserc
Copy link

Line 58 reads:

  forEach.call(sheet.cssRules, findDeclarations);

On <style> tags which lead to empty stylesheets, sheet.cssRules is null, which causes an error on my iOS7 device. If a stylesheet (for whatever reason) is empty, we should probably just skip the sheet:

  if (!sheet.cssRules) return;
@rodneyrehm
Copy link
Owner

thanks, fixed in 0.2.2

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

No branches or pull requests

2 participants