angular-css
angular-css copied to clipboard
CSS on-demand for AngularJS [Looking for New Maintainers]
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...
in `$css.preload`, `stylesheet.href` is not tested for array-ness so, this works... ```js css: [ 'stylesheets/style.css', 'https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.8.5/nv.d3.css', 'views/visualize-nvd3/visialize-nvd3.css' ] ``` but this fails... ```js css: { href: [ 'stylesheets/style.css', 'views/visualize-nvd3/visialize-nvd3.css' ],...
There was null reference exception when using only component router, i added simple nullref check.
Hi, I added this in my angularjs app, used in a state. In the state, provided the css. But it is loaded in all of the (unrelated) states, instead of...
1) Is there is a way to set some CSS files globally to whole application?. E.g. Bootstrap.min.css for all views and pages. 2) Next question is there is a way...
The file package.json contains the following line: `"main": index.js` This specifies the entry point for npm, but there's no index.js in the package. It should reference angular-css.js instead.
How will it work when we minify and combine all the css into one file on PROD environments ? It may not be a good idea to pack all the...
As a User, I'd like to have native support for `angular-ui-router#1.x` so that I don't have to use workarounds that mimic `angular-ui-router#0.x`'s deprecated behavior. **Cause** - With ui-router 1.x the...
Hi, Just a suggestion but the $css.preload only calls the callback when there is no error. Probably be better to either call the callback passing in an error object when...
Hi, Your module is pretty awesome, however i have a little problem, while loading my page for the first time, i have a tiny moment when the css is not...