angular ui - Does AngularUI/Bootstrap support twitter-bootstrap 3? -
dropdown menu not working in angular-ui-bootstrap? using bootstrap-3 css
the following code. link click me dropdown
shows up. not toggle on click. wrong?
<!doctype html> <html> <head> <link rel="stylesheet" href="css/bootstrap.min.css"> <script>function dropdownctrl($scope) { $scope.items = [ "the first choice!", "and choice you.", "but wait! third!" ]; } </script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js"></script><script type="text/javascript" src="js/ui-bootstrap-tpls-0.5.0.min.js"></script><script type="text/javascript" src="js/dropdowntoggle.js"></script> </head> <body> <li ng-controller="dropdownctrl" class="dropdown"> <a href='#' class="dropdown-toggle"> click me dropdown </a> <ul class="dropdown-menu"> <li ng-repeat="choice in items"><a>{{choice}}</a> </li> </ul> </li> </body> </html>
Comments
Post a Comment