The used version is the following.
・AngularJS 1.2.16
・Bootstrap3.1.1
・AngularUI Bootstratp 0.11.0
var myApp = angular.module('app', ['ngRoute', 'ui.bootstrap']);
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">menu</a>
<ul class="dropdown-menu" role="menu" aria-labelledby="userMenu">
<li role="presentation" class="disabled"><a role="menuitem" tabindex="-1" href="#" class="">one</a></li>
<li role="presentation" class="disabled"><a role="menuitem" tabindex="-1" href="#" class="">two</a></li>
<li role="presentation" class="disabled"><a role="menuitem" tabindex="-1" href="#" class="">three</a></li>
</ul>
</li>
If it carries out, a click will be needed for Dropdown of Navbar twice. (Unless it double-clicks menu, one, two, and three are not displayed. )
Then, when lowering the version of the script to be used, it was able to use satisfactorily.
・3.1.0 bootstrap.min.js
・0.10.0 ui-bootstrap-tpls.min.js
I want you to teach how if it carries out, it can display by one click.