I have the following piece of code:
<a href="#" class="dropdown-toggle" data-toggle="dropdown" ng-bind="user.displayName">
<b class="caret"></b>
</a>
As you can see I use caret class from Bootstrap and ng-bind from AngularJS. Unfortunately when I use mg-bind the caret is not visible on my webpage. However, when I don't use mg-bind and just inline the value like this:
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
{{user.displayName}}<b class="caret"></b>
</a>
the caret is visible.
Any ideas how to make the caret visible while using ng-bind?