Bootstrap Carousel Showing All Images At Once With Error When I Use Ng-repeat
I'm trying to add a carousel(http://angular-ui.github.io/bootstrap/#/carousel) to my Bootstrap 3 website. But, All images are showing at once with the error. When i create a sample
Solution 1:
According to the stacktrace, angular didn't found the module ngAnimate
. You probably forgot to link angular-animate script from your index.html page.
index.html
<scriptsrc="//ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.js"></script><scriptsrc="//ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular-animate.js"></script><scriptsrc="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.14.3.js"></script>
Post a Comment for "Bootstrap Carousel Showing All Images At Once With Error When I Use Ng-repeat"