A angularJS service to load dynamically CSS files
angularDynamicStylesheets is a AngularJS service allows you to load dynamically CSS files in your HTML page.
-
First, add the module "" to your AngularJS apps
angular.module('myModule', ['DynamicStylesheets']);
-
Get this service where you want and add your css files in your HTML page ! Example here in a controller :
function MyCtrl($scope, dynamicStylesheets) { dynamicStylesheets.add("/path/to/your/css/file.css"); }