i have 2 css files and i want to use any one of them conditionally. How can i load css files dynamically. I have tried the following solution.
In controller i have a variable
$scope.style1 = "resources/css/style_responsive.css";
in index.html
<link id="base-style-responsive" ng-href={{style1}} rel="stylesheet">
But i doesn't seems to load the files properly. Is there any way work around to load files dynamically. I shall be so much thankful. Kindly help me.