In a rare flash of intelligence, I figured this out on my own: You
have to put the twitter bootstrap code inside the controller of your
"partial" page. i.e....
function UserCtrl($scope, User) {
$('#pop').popover()
}
The Twitter Bootstrap site just says to put $('#pop').popover() in
<script> tags at the end of your page just before </body>. That
doesn't work is you're using angular.
On Apr 22, 1:07 pm,
bdunk...@yahoo.com wrote:
> I tried putting a twitter bootstrap popover directly in my index.html page
> and it worked fine. But when I put the same popover code into a "partial'
> page rendered via ng-view, the popover no longer appears.
>
> Anyone else see this behavior?
>
> I've seen posts saying to create this directive or that directive. I've
> seen the fiddlehttp://
jsfiddle.net/msgilligan/UYjkK/but haven't had any