I am trying to use Angular UI Bootstrap:
I have done the following:
- Install it with a gazebo:
bower install angular-bootstrap - Include it in js:
var myapp = angular.module('myApp', [ 'ui.bootstrap' ]); - Add styles:
.nav, .pagination, .carousel, .panel-title a { cursor: pointer; } .nav, .pagination, .carousel, .panel-title a { cursor: pointer; }
Bootstrap 3 CSS is included, angular.element.fn.jquery returns "2.1.4", so it should not use jqlite.
When I add, for example:
<a href="#" tooltip-placement="left" uib-tooltip="On the Left!">Whatever</a>
Nothing happens in my template. When I add other bootstrap ui examples, it also does nothing. No javascript errors. My version of angular.js is 1.4.1.
What else could I do wrong? Do I have to do something with my controller?
source share