I am having this problem here and I haven\'t gotten any consistent solution so far looking out there. I am running a Java project with Angular on the front-end, and trying to im
You must load the ui.boostrap module after the angularjs file.
Another way to install this via bower and here are the instructions.
Add the following 2 packages to bower.json in your directory.
"bootstrap": "*",
"angular-bootstrap": "*",
Run bower update
from your directory
Add the ui.bootstrap
to angular module like below.
Wire it in the view for the bootsrap to work
CSS
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
JS
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
You have to include following after angular.min....
<script src="..//ui-bootstrap-custom-tpls-0.12.0.min.js" type="text/javascript"></script>