I want to use bootstrap carousel along with angular js to display images in carousel content. But, when the navigation links clicked, it displays blank page.
My code
This works, without modify the original bootstrap example
$("a.carousel-control").click(function(e){ e.preventDefault(); $(this).parent().carousel($(this).data("slide")); });