Hello everyone, I am completely new to both Stack Overflow and AngularJS. I'm attempting to incorporate a fade-in animation into my dropdown (using UI Bootstrap's dropdown directive) without success.
This issue is quite similar to the following question: Bootstrap 3 dropdown transition However, I am curious if there is an Angular (without jQuery) method for achieving this?
I am thrilled to be posting my very first question here.
Below is the code snippet I am working with (taken directly from UI Bootstrap's default Dropdown):
<div class="btn-group" dropdown is-open="status.isopen">
<button type="button" class="btn btn-primary dropdown-toggle" dropdown-toggle ng-disabled="disabled">
Button dropdown <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
Here is the plunker showcasing the issue: http://plnkr.co/edit/CmAZv4DTeda4X0bnkQwQ