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
i got this error from the angular-css.js the style is correctly loaded
and i corrected by changing the line 447 from
$http.get(stylesheet.href).error(function (response) { if(DEBUG) $log.error('AngularCSS: Incorrect path for ' + stylesheet.href); })
to
$http.get(stylesheet.href).then(function (response) { if(DEBUG) $log.error('AngularCSS: Incorrect path for ' + stylesheet.href); })
The text was updated successfully, but these errors were encountered:
Even after making your change, the style sheet is still not loaded properly. I think it has to do with preloading the css not working correctly
Sorry, something went wrong.
Does ac5bae8 fix this?
ac5bae8 fixes it for me.
Is there any plan to publish?
Feel like this project is dead...
No branches or pull requests
i got this error from the angular-css.js
the style is correctly loaded
and i corrected by changing the line 447 from
to
The text was updated successfully, but these errors were encountered: