rodneyrehm / viewport-units-buggyfill

Making viewport units (vh|vw|vmin|vmax) work properly in Mobile Safari.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

breaks on pages with no CSS rules

glasserc opened this issue · comments

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;

thanks, fixed in 0.2.2