We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is an closure error in the code, if there are many css link, it may work incorrect.
for (_i = 0, _len = links.length; _i < _len; _i++) { i = links[_i]; if (i.rel !== 'stylesheet') { continue; } innerSheetCount++; ajax(i.href, function(cssText) { var sheet, tokenlist; tokenlist = tokenize(cssText); sheet = parse(tokenlist); analyzeStylesheet(sheet); sheets[i.href] = sheet; outerSheetCount++; if (outerSheetCount === innerSheetCount) { window.onresize(); } }); }
The text was updated successfully, but these errors were encountered:
Ahh, I think I see it. I have to isolate i.href.
i.href
Thanks for the report!
Sorry, something went wrong.
No branches or pull requests
There is an closure error in the code, if there are many css link, it may work incorrect.
The text was updated successfully, but these errors were encountered: