angular-ui / bootstrap

PLEASE READ THE PROJECT STATUS BELOW. Native AngularJS (Angular) directives for Bootstrap. Smaller footprint (20kB gzipped), no 3rd party JS dependencies (jQuery, bootstrap JS) required. Please read the README.md file before submitting an issue!
http://angular-ui.github.io/bootstrap/
MIT License
14.29k stars 6.73k forks source link

alert has no class #6451

Closed r3wt closed 7 years ago

r3wt commented 7 years ago

controller:

$scope.error = 'something went wrong';

template:

<div uib-alert ng-show="error" ng-class="alert-danger" close="error = null">{{error}}</div>

result: alert does not have alert-danger class as expected.