I have been attempting to modify my bootstrap.css file in order to change the theme of my application:
$scope.changeStyle = function (style) {
$scope.myStyle = style + '/bootstrap.min.css';
$scope.$apply();
}
The 'myStyle' element is defined in the HTML:
<link rel="stylesheet" href="{{myStyle}}">
My question is how can I make it work? You can refer to this Plunkr for more details:http://plnkr.co/edit/t0fZLB?p=preview