angular-css
angular-css copied to clipboard
$http.get(...).error
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);
})
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
Does https://github.com/castillo-io/angular-css/commit/ac5bae8e8ee1c56c58a770af8486afb99f2180b3 fix this?
ac5bae8 fixes it for me.
Is there any plan to publish?
Feel like this project is dead...